angular-cn/public/docs/_examples/component-styles/ts/app/hero-app-main.component.ts
2016-08-09 11:48:07 -07:00

17 lines
371 B
TypeScript

import { Component, Input } from '@angular/core';
import { Hero } from './hero';
@Component({
selector: 'hero-app-main',
template: `
<quest-summary></quest-summary>
<hero-details [hero]=hero [class.active]=hero.active>
<hero-controls [hero]=hero></hero-controls>
</hero-details>
`
})
export class HeroAppMainComponent {
@Input() hero: Hero;
}