mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
// #docregion
|
|
// The browser platform with a compiler
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
|
|
// The app module
|
|
import { AppModule } from './app/app.module';
|
|
|
|
// Compile and launch the module
|
|
platformBrowserDynamic().bootstrapModule(AppModule);
|