2016-06-13 00:41:33 +02:00
|
|
|
/* tslint:disable no-unused-variable */
|
2016-03-16 18:01:33 +02:00
|
|
|
// #docregion ng2import
|
2016-05-03 14:06:32 +02:00
|
|
|
import { bootstrap }
|
2016-04-27 11:28:22 -07:00
|
|
|
from '@angular/platform-browser-dynamic';
|
2016-03-16 18:01:33 +02:00
|
|
|
import {
|
|
|
|
LocationStrategy,
|
|
|
|
HashLocationStrategy
|
2016-04-27 11:28:22 -07:00
|
|
|
} from '@angular/common';
|
2016-03-16 18:01:33 +02:00
|
|
|
// #enddocregion ng2import
|
|
|
|
|
|
|
|
// #docregion appimport
|
2016-08-09 17:38:25 +01:00
|
|
|
import { HeroComponent } from './hero.component';
|
2016-03-16 18:01:33 +02:00
|
|
|
// #enddocregion appimport
|
|
|
|
|
2016-08-09 17:38:25 +01:00
|
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
2016-03-16 18:01:33 +02:00
|
|
|
|
2016-08-09 17:38:25 +01:00
|
|
|
import { HeroesModule } from './hero.component';
|
|
|
|
import { HeroesLifecycleModule } from './hero-lifecycle.component';
|
|
|
|
import { HeroesDIModule } from './hero-di.component';
|
|
|
|
import { HeroesDIInjectModule } from './hero-di-inject.component';
|
|
|
|
import { HeroesDIInjectAdditionalModule } from './hero-di-inject-additional.component';
|
|
|
|
import { HeroesIOModule } from './hero-io.component';
|
|
|
|
import { HeroesHostBindingsModule } from './heroes-bindings.component';
|
|
|
|
import { HeroesQueriesModule } from './heroes-queries.component';
|
|
|
|
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesLifecycleModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesDIModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesDIInjectModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesDIInjectAdditionalModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesIOModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesHostBindingsModule);
|
|
|
|
platformBrowserDynamic().bootstrapModule(HeroesQueriesModule);
|