2016-01-27 14:49:02 -08:00
|
|
|
// #docregion
|
2016-05-03 14:06:32 +02:00
|
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
|
|
import { AppComponent } from './app.component';
|
2016-07-05 21:20:33 -05:00
|
|
|
import { appRouterProviders } from './app.routes';
|
2016-01-27 14:49:02 -08:00
|
|
|
|
2016-07-05 21:20:33 -05:00
|
|
|
bootstrap(AppComponent, [
|
|
|
|
appRouterProviders
|
|
|
|
]);
|