forked from coracle/flotilla
14 lines
238 B
Svelte
14 lines
238 B
Svelte
<script lang="ts">
|
|
import type {Snippet} from "svelte"
|
|
|
|
interface Props {
|
|
children: Snippet
|
|
}
|
|
|
|
const {children}: Props = $props()
|
|
</script>
|
|
|
|
<div class="flex flex-col m-auto max-w-xs gap-2 py-4">
|
|
{@render children()}
|
|
</div>
|