2016-06-19 00:20:38 -04:00
|
|
|
// #docregion
|
2016-04-27 14:28:22 -04:00
|
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
2016-05-03 08:06:32 -04:00
|
|
|
|
2015-12-23 12:42:57 -05:00
|
|
|
import { AppComponent } from './app.component';
|
2016-07-05 22:20:33 -04:00
|
|
|
import { appRouterProviders } from './app.routes';
|
2015-12-23 12:42:57 -05:00
|
|
|
|
2016-06-19 00:20:38 -04:00
|
|
|
bootstrap(AppComponent, [
|
2016-07-05 22:20:33 -04:00
|
|
|
appRouterProviders
|
2016-06-19 00:20:38 -04:00
|
|
|
]);
|