10 lines
236 B
HTML
10 lines
236 B
HTML
<!-- #docregion -->
|
|
<h2>Hero List</h2>
|
|
|
|
<p><i>Pick a hero from the list</i></p>
|
|
<div *ngFor="let hero of heroes" (click)="selectHero(hero)">
|
|
{{hero.name}}
|
|
</div>
|
|
|
|
<hero-detail *ngIf="selectedHero" [hero]="selectedHero"></hero-detail>
|