budibase/packages/materialdesign-components/src/Datatable/DatatableHead.svelte

13 lines
186 B
Svelte
Raw Normal View History

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