Gitiles
Code Review
Sign In
gerrit.opencord.org
/
xos-gui
/
44b7d6bf01f2bdfac04221344853bc602f7a64a2
/
.
/
src
/
app
/
components
/
tables
/
table.component.html
blob: d945ae7b3622a07b76abd376f44283e0ae4008d6 [
file
] [
log
] [
blame
]
<table>
<tr>
<th
*
ngFor
=
"let col of _config.columns"
>
{{col.label}}
</th>
</tr>
<tr
*
ngFor
=
"let item of _data"
>
<td
*
ngFor
=
"let col of _config.columns"
>
{{item[col.prop]}}
</td>
</tr>
</table>