feat: Deleting episodes and seasons, work in mm redesign

This commit is contained in:
Aleksi Lassila
2024-05-02 17:18:30 +03:00
parent 0d05e3b530
commit d608c4b917
26 changed files with 594 additions and 264 deletions

View 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>