Premier jet
This commit is contained in:
13
angular-tour-of-heroes/src/app/heroes/heroes.component.html
Normal file
13
angular-tour-of-heroes/src/app/heroes/heroes.component.html
Normal file
@ -0,0 +1,13 @@
|
||||
<h2>My Heroes</h2>
|
||||
|
||||
|
||||
<ul class="heroes">
|
||||
<li *ngFor="let hero of heroes"
|
||||
[class.selected]="hero === selectedHero"
|
||||
(click)="onSelect(hero)">
|
||||
<span class="badge">{{hero.id}}</span> {{hero.name}}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<app-hero-detail [hero]="selectedHero"></app-hero-detail>
|
Reference in New Issue
Block a user