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