2015-12-10 09:40:54 -08:00
|
|
|
// #docregion
|
2016-06-09 13:00:26 -05:00
|
|
|
// main entry point
|
2016-07-07 18:46:35 -07:00
|
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { appRouterProviders } from './app.routes';
|
2015-12-10 09:40:54 -08:00
|
|
|
|
2016-06-09 13:00:26 -05:00
|
|
|
bootstrap(AppComponent, [
|
2016-07-07 18:46:35 -07:00
|
|
|
appRouterProviders
|
2016-06-09 13:00:26 -05:00
|
|
|
])
|
|
|
|
.catch(err => console.error(err));
|