2016-08-09 11:48:07 -07:00

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
}