10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
|
// #docregion
|
||
|
// The browser platform with a compiler
|
||
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
||
|
|
||
|
// The app module
|
||
|
import { AppModule } from './app.module';
|
||
|
|
||
|
// Compile and launch the module
|
||
|
platformBrowserDynamic().bootstrapModule(AppModule);
|