tuto_angular/angular-tour-of-heroes/src/app/hero-detail/hero-detail.component.ts

17 lines
349 B
TypeScript
Raw Normal View History

2019-10-25 13:36:01 +00:00
import { Component, OnInit, Input } from '@angular/core';
import { Hero } from '../hero';
@Component({
selector: 'app-hero-detail',
templateUrl: './hero-detail.component.html',
styleUrls: ['./hero-detail.component.css']
})
export class HeroDetailComponent implements OnInit {
@Input() hero: Hero;
constructor() { }
ngOnInit() {
}
}