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

12 lines
234 B
TypeScript

import { Component, Input } from '@angular/core';
import { Hero } from './hero';
@Component({
selector: 'hero-detail',
templateUrl: 'app/hero-detail.component.html'
})
export class HeroDetailComponent {
@Input() hero: Hero;
}