11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
// #docregion
|
|
// main entry point
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
import { AppComponent } from './app.component';
|
|
import { appRouterProviders } from './app.routes';
|
|
|
|
bootstrap(AppComponent, [
|
|
appRouterProviders
|
|
])
|
|
.catch(err => console.error(err));
|