You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<div *ngIf="hero">
|
|
<h2>{{hero.name}} details!</h2>
|
|
<div>
|
|
<label>id: </label>{{hero.id}}</div>
|
|
<div>
|
|
<label>name: </label>
|
|
<input [(ngModel)]="hero.name" placeholder="name" />
|
|
</div>
|
|
<button (click)="goBack()">Back</button>
|
|
</div>
|