7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
|
// #docregion
|
||
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
||
|
|
||
|
import { AppComponent } from './app.component';
|
||
|
|
||
|
bootstrap(AppComponent);
|