angular/aio/content/examples/architecture/src/app/hero-list.component.html
2017-09-21 17:05:54 -07:00

12 lines
259 B
HTML

<!-- #docregion -->
<h2>Hero List</h2>
<p><i>Pick a hero from the list</i></p>
<ul>
<li *ngFor="let hero of heroes" (click)="selectHero(hero)">
{{hero.name}}
</li>
</ul>
<app-hero-detail *ngIf="selectedHero" [hero]="selectedHero"></app-hero-detail>