17 lines
402 B
TypeScript
17 lines
402 B
TypeScript
// #docregion
|
|
import { Component } from 'angular2/core';
|
|
|
|
import { HeroesComponent } from './heroes/heroes.component';
|
|
import { HeroService } from './heroes/shared/hero.service';
|
|
|
|
@Component({
|
|
selector: 'toh-app',
|
|
template: `
|
|
<toh-heroes></toh-heroes>
|
|
`,
|
|
styleUrls: ['app/app.component.css'],
|
|
directives: [HeroesComponent],
|
|
providers: [HeroService]
|
|
})
|
|
export class AppComponent { }
|