angular/aio/content/examples/animations/src/app/hero-list-auto.component.html
2018-09-19 10:37:31 -07:00

9 lines
249 B
HTML

<ul class="heroes">
<li *ngFor="let hero of heroes"
[@shrinkOut]="'in'" (click)="removeHero(hero.id)">
<div class="inner">
<span class="badge">{{ hero.id }}</span>
<span>{{ hero.name }}</span>
</div>
</li>
</ul>