Substantially rewritten, based on original content by Brian Clarkio and Ward Bell and contributions from Naomi Black.
9 lines
197 B
TypeScript
9 lines
197 B
TypeScript
// #docregion
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
|
|
|
// #docregion import
|
|
import { AppComponent } from './app.component';
|
|
// #enddocregion import
|
|
|
|
bootstrap(AppComponent);
|