import { Component, Input } from '@angular/core'; import { Hero } from './hero'; @Component({ selector: 'hero-app-main', template: ` ` }) export class HeroAppMainComponent { @Input() hero: Hero; }