2016-05-21 15:04:08 -07:00

20 lines
442 B
TypeScript

// #docregion
// app.component.ts
import { Component } from '@angular/core';
import { HeroesComponent } from './heroes/heroes.component';
import { HeroService } from './heroes/shared/hero.service';
@Component({
moduleId: module.id,
selector: 'toh-app',
template: `
<toh-heroes></toh-heroes>
`,
styleUrls: ['app.component.css'],
directives: [HeroesComponent],
providers: [HeroService]
})
export class AppComponent { }