1
0
Fork 0
mirror of synced 2024-07-06 23:10:57 +12:00
budibase/packages/standard-components/src/TableBody.svelte
Martin McKeaveney 0d0f635db4 eslint tidy up
2020-02-25 15:46:04 +00:00

11 lines
156 B
Svelte

<script>
export let className = ""
export let _bb
let thead
$: _bb.attachChildren(thead)
</script>
<tbody bind:this={thead} class="className" />