7 lines
163 B
TypeScript

// #docregion
import { bootstrap } from '@angular/platform-browser-dynamic';
import { AppComponent } from './app/app.component';
bootstrap(AppComponent, []);