7 lines
144 B
Svelte
7 lines
144 B
Svelte
<script lang="ts">
|
|
import type { PageData } from './$types';
|
|
export let data: PageData;
|
|
</script>
|
|
|
|
<svelte:component this={data.component} />
|