docs: remove unused Input decorator (#38306)

In the part "5. Add In-app Navigation" of the tutorial it was already removed
PR Close #38306
This commit is contained in:
Sergey Falinsky 2020-07-31 01:30:57 +03:00 committed by Andrew Scott
parent aa3520eb7d
commit 5f2e475abf
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { Component, OnInit, Input } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { Location } from '@angular/common';
@ -11,7 +11,7 @@ import { HeroService } from '../hero.service';
styleUrls: [ './hero-detail.component.css' ]
})
export class HeroDetailComponent implements OnInit {
@Input() hero: Hero;
hero: Hero;
constructor(
private route: ActivatedRoute,