summaryrefslogtreecommitdiff
path: root/src/frontend/SvelteWrapper.svelte
blob: eb4cbb7d9d11ecb54d2956f71dc731492213952e (plain) (blame)
1
2
3
4
5
6
7
<script>
const { __astro_component: Component, __astro_children, ...props } = $$props;
</script>

<Component {...props}>
    {@html __astro_children}
</Component>