angular-cn/public/docs/_examples/hierarchical-dependency-inj.../ts/app/boot.ts

13 lines
421 B
TypeScript
Raw Normal View History

// #docregion
import {bootstrap} from 'angular2/platform/browser';
import {HeroesListComponent} from './heroes-list.component';
import {HeroesService} from './heroes.service';
bootstrap(HeroesListComponent, [HeroesService])
/* Documentation artifact below
// #docregion bad-alternative
// Don't do this!
bootstrap(HeroesListComponent, [HeroesService, RestoreService])
// #enddocregion bad-alternative
*/