2016-06-09 13:00:26 -05:00
|
|
|
/* third version */
|
2015-12-14 18:19:17 -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.3';
|
|
|
|
import { appRouterProviders } from './app.routes';
|
2015-12-14 18:19:17 -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));
|