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