17 lines
294 B
TypeScript
17 lines
294 B
TypeScript
// #docregion
|
|
import {Component, Input} from '@angular/core';
|
|
import {Hero} from '../hero';
|
|
|
|
@Component({
|
|
selector: 'hero-detail',
|
|
template: `
|
|
<h2>{{hero.name}}</h2>
|
|
<div>
|
|
<ng-content></ng-content>
|
|
</div>
|
|
`
|
|
})
|
|
export class HeroDetailComponent {
|
|
@Input() hero: Hero;
|
|
}
|