2018-03-28 07:53:04 -07:00

13 lines
220 B
TypeScript

// #docregion
import { Component } from '@angular/core';
import { HeroService } from './heroes';
@Component({
selector: 'toh-app',
template: `
<toh-heroes></toh-heroes>
`,
})
export class AppComponent {}