10 lines
263 B
TypeScript
Raw Normal View History

/// <reference path="../../../angular2/typings/rx/rx.d.ts" />
import {bootstrap} from 'angular2/bootstrap';
2015-08-20 14:28:25 -07:00
import {JSONP_BINDINGS} from 'angular2/http';
import {JsonpCmp} from './jsonp_comp';
export function main() {
bootstrap(JsonpCmp, [JSONP_BINDINGS]);
}