mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-21 16:25:11 +02:00
feat: Deleting episodes and seasons, work in mm redesign
This commit is contained in:
14
src/lib/components/Table/Table.svelte
Normal file
14
src/lib/components/Table/Table.svelte
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user