1
0
Fork 0
mirror of synced 2024-07-12 17:56:07 +12:00
budibase/packages/standard-components/src/TableBody.svelte

11 lines
156 B
Svelte
Raw Normal View History

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