Files
milestones/src/components/table/table.component.html

14 lines
250 B
HTML

<table>
<tr>
<th *ngFor="let h of header">
{{ h.label }}
</th>
</tr>
<tr *ngFor="let row of rows | async; let index">
<td>{{ index }}</td>
<td *ngFor="let h of header">
{{ row[h.source] }}
</td>
</tr>
</table>