import { Component, Input } from '@angular/core'; import { Hero } from './hero'; // #docregion inlinestyles @Component({ selector: 'hero-controls', template: `

Controls

` }) // #enddocregion inlinestyles export class HeroControlsComponent { @Input() hero: Hero; activate() { this.hero.active = true; } }