9 lines
304 B
TypeScript
9 lines
304 B
TypeScript
|
import {bootstrap} from 'angular2/platform/browser';
|
||
|
import {AppComponent} from './app.component';
|
||
|
import {HeroService} from './heroes/hero.service';
|
||
|
|
||
|
//#docregion bootstrap
|
||
|
// Injecting services in bootstrap works but is discouraged
|
||
|
bootstrap(AppComponent, [HeroService]);
|
||
|
//#enddocregion bootstrap
|