2016-11-21 17:29:00 -08:00
|
|
|
// #docregion
|
|
|
|
// #docregion import
|
2016-08-09 17:38:25 +01:00
|
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
|
|
|
|
|
|
import { AppModule } from './app.module';
|
2016-11-21 17:29:00 -08:00
|
|
|
// #enddocregion import
|
2015-12-10 18:29:14 -08:00
|
|
|
|
2016-11-21 17:29:00 -08:00
|
|
|
const platform = platformBrowserDynamic();
|
|
|
|
platform.bootstrapModule(AppModule);
|