1
0
Fork 0
mirror of synced 2024-08-17 11:01:26 +12:00
budibase/packages/standard-components/src/TableHead.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>
<thead bind:this={thead} class=className></thead>