1
0
Fork 0
mirror of synced 2024-08-04 12:51:47 +12:00
budibase/packages/standard-components/src/TableBody.svelte

12 lines
151 B
Svelte
Raw Normal View History

2020-02-21 06:06:50 +13:00
<script>
export let className=""
export let _bb
let thead
$: _bb.attachChildren(thead)
</script>
<tbody bind:this={thead} class=className></tbody>