12 lines
151 B
Svelte
12 lines
151 B
Svelte
|
<script>
|
||
|
|
||
|
export let className=""
|
||
|
export let _bb
|
||
|
|
||
|
let thead
|
||
|
|
||
|
$: _bb.attachChildren(thead)
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<thead bind:this={thead} class=className></thead>
|