9 lines
304 B
TypeScript
Raw Normal View History

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