9 lines
214 B
TypeScript
Raw Normal View History

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