12 lines
327 B
TypeScript
Raw Normal View History

/* third version */
2015-12-14 18:19:17 -08:00
// #docregion
// main entry point
import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component.3';
import { APP_ROUTER_PROVIDERS } from './app.routes';
2015-12-14 18:19:17 -08:00
bootstrap(AppComponent, [
APP_ROUTER_PROVIDERS
])
.catch(err => console.error(err));