Spaces:
Running
Running
File size: 350 Bytes
321edbc bdf2455 54c14ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<script lang="ts">
export let data, columns;
</script>
<table>
<thead>
<tr>
{#each columns as column}
<th>{column}</th>
{/each}
</tr>
</thead>
<tbody>
{#each data as row}
<tr>
{#each columns as column}
<td>{row[column]}</td>
{/each}
</tr>
{/each}
</tbody>
</table>
|