angular/aio/content/examples/dependency-injection-in-action/src/app/hero-of-the-month.component.html
2017-04-24 14:00:51 +01:00

10 lines
304 B
HTML

<h3>{{title}}</h3>
<div>Winner: <strong>{{heroOfTheMonth.name}}</strong></div>
<div>Reason for award: <strong>{{heroOfTheMonth.description}}</strong></div>
<div>Runners-up: <strong id="rups1">{{runnersUp}}</strong></div>
<p>Logs:</p>
<div id="logs">
<div *ngFor="let log of logs">{{log}}</div>
</div>