Premier jet

This commit is contained in:
2019-10-25 15:36:01 +02:00
commit c735c39693
42 changed files with 14088 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<div *ngIf="hero">
<h2>{{hero.name | uppercase}} Details</h2>
<div><span>id: </span>{{hero.id}}</div>
<div>
<label>name:
<input [(ngModel)]="hero.name" placeholder="name"/>
</label>
</div>
</div>