angular-cn/public/docs/_examples/style-guide/ts/04-14/app/app.component.ts

11 lines
231 B
TypeScript

import { Component } from '@angular/core';
import { HeroesComponent } from './+heroes';
@Component({
selector: 'sg-app',
template: '<toh-heroes></toh-heroes>',
directives: [HeroesComponent]
})
export class AppComponent { }