forked from coracle/flotilla
9 lines
211 B
Svelte
9 lines
211 B
Svelte
<script lang="ts">
|
|
import type {ComponentProps} from "svelte"
|
|
import Content from "@app/components/Content.svelte"
|
|
|
|
const props: ComponentProps<typeof Content> = $props()
|
|
</script>
|
|
|
|
<Content {...props} />
|