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