9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
// #docregion
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
import { AppComponent } from './app.component';
|
|
import { appRouterProviders } from './app.routes';
|
|
|
|
bootstrap(AppComponent, [
|
|
appRouterProviders
|
|
]);
|