import { Component, Input } from '@angular/core'; import { Hero } from './hero'; import { HeroTeamComponent } from './hero-team.component'; // #docregion styleurls @Component({ selector: 'hero-details', template: `

{{hero.name}}

`, styleUrls: ['app/hero-details.component.css'], directives: [HeroTeamComponent] }) export class HeroDetailsComponent { // #enddocregion styleurls @Input() hero: Hero; // #docregion styleurls }