19 lines
430 B
TypeScript
19 lines
430 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
import { Hero } from './hero';
|
|
|
|
// #docregion styleurls
|
|
@Component({
|
|
selector: 'hero-details',
|
|
template: `
|
|
<h2>{{hero.name}}</h2>
|
|
<hero-team [hero]=hero></hero-team>
|
|
<ng-content></ng-content>
|
|
`,
|
|
styleUrls: ['app/hero-details.component.css']
|
|
})
|
|
export class HeroDetailsComponent {
|
|
// #enddocregion styleurls
|
|
@Input() hero: Hero;
|
|
// #docregion styleurls
|
|
}
|