2016-06-23 16:47:54 +00: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
|
|
|
|
|
*/
|
|
|
|
|
|
2016-06-08 23:38:52 +00:00
|
|
|
import {ReflectiveInjector, coreBootstrap} from '@angular/core';
|
|
|
|
|
import {BROWSER_APP_PROVIDERS, browserPlatform} from '@angular/platform-browser';
|
|
|
|
|
|
2016-04-29 04:57:16 +00:00
|
|
|
import {Basic} from './basic';
|
2016-06-08 23:38:52 +00:00
|
|
|
import {BasicNgFactory} from './basic.ngfactory';
|
2016-04-29 04:57:16 +00:00
|
|
|
|
|
|
|
|
const appInjector =
|
2016-05-20 23:11:49 +00:00
|
|
|
ReflectiveInjector.resolveAndCreate(BROWSER_APP_PROVIDERS, browserPlatform().injector);
|
2016-05-20 18:18:08 +00:00
|
|
|
coreBootstrap(BasicNgFactory, appInjector);
|