3: Create a Feature Component
[examples/angular-tour-of-heroes] / src / app / hero-detail / hero-detail.component.ts
1 import { Component, OnInit, Input } from '@angular/core';
2 import { Hero } from '../hero';
3
4 @Component({
5   selector: 'app-hero-detail',
6   templateUrl: './hero-detail.component.html',
7   styleUrls: ['./hero-detail.component.css']
8 })
9 export class HeroDetailComponent implements OnInit {
10
11   @Input() hero : Hero;
12
13   constructor() { }
14
15   ngOnInit() {
16   }
17
18 }