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