2020-02-20 18:06:50 +01:00
|
|
|
<script>
|
|
|
|
import { getContext } from "svelte"
|
|
|
|
import ClassBuilder from "../ClassBuilder.js"
|
|
|
|
|
|
|
|
export let _bb
|
|
|
|
|
2020-02-24 16:59:54 +01:00
|
|
|
const cb = new ClassBuilder("data-table")
|
2020-02-20 18:06:50 +01:00
|
|
|
|
|
|
|
let tbody
|
|
|
|
|
|
|
|
$: tbody && _bb.attachChildren(tbody)
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<tbody bind:this={tbody} class={cb.elem`content`}></tbody>
|