budibase/packages/standard-components/src/TableHead.svelte

12 lines
151 B
Svelte
Raw Normal View History

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