2015-12-11 13:18:37 -08:00
|
|
|
// #docregion
|
2016-04-27 11:28:22 -07:00
|
|
|
import {bootstrap} from '@angular/platform-browser-dynamic';
|
2015-12-11 13:18:37 -08:00
|
|
|
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
|
|
|
|
*/
|