2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-10 10:21:53 -07:00
|
|
|
import {bootstrap} from '@angular/platform-browser-dynamic';
|
2016-05-01 22:54:19 -07:00
|
|
|
import {JSONP_PROVIDERS} from '@angular/http';
|
|
|
|
import {JsonpCmp} from './app/jsonp_comp';
|
2015-07-14 19:53:04 -05:00
|
|
|
|
|
|
|
export function main() {
|
2015-10-10 22:11:13 -07:00
|
|
|
bootstrap(JsonpCmp, [JSONP_PROVIDERS]);
|
2015-07-14 19:53:04 -05:00
|
|
|
}
|