mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-21 16:25:11 +02:00
15 lines
257 B
Svelte
15 lines
257 B
Svelte
<script lang="ts">
|
|
import Container from '../../../Container.svelte';
|
|
|
|
export let rows: number;
|
|
</script>
|
|
|
|
<table class="w-full grid">
|
|
<thead>
|
|
<slot name="header" />
|
|
</thead>
|
|
<Container tag="tbody" {...$$restProps}>
|
|
<slot />
|
|
</Container>
|
|
</table>
|