2015-07-14 19:53:04 -05:00
|
|
|
/// <reference path="../../../angular2/typings/rx/rx.all.d.ts" />
|
|
|
|
|
2015-07-22 10:18:04 -07:00
|
|
|
import {bootstrap} from 'angular2/bootstrap';
|
2015-07-14 19:53:04 -05:00
|
|
|
import {jsonpInjectables} from 'angular2/http';
|
|
|
|
import {JsonpCmp} from './jsonp_comp';
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
bootstrap(JsonpCmp, [jsonpInjectables]);
|
|
|
|
}
|