2016-09-07 19:04:33 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
2016-11-07 14:51:09 -05:00
|
|
|
import * as module from './module';
|
2016-09-07 19:04:33 -04:00
|
|
|
|
2016-11-07 14:51:09 -05:00
|
|
|
if (module.AppModule) {
|
|
|
|
platformBrowserDynamic().bootstrapModule(module.AppModule);
|
|
|
|
}
|