mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
878 B
878 B
<div>
<slot />
</div>
<style>
div {
margin: 3em;
}
</style>
<script>
let { children } = $props();
</script>
<div>
{@render children()}
</div>
<style>
div {
margin: 3em;
}
</style>
<div>
<slot />
</div>
<style>
div {
margin: 3em;
}
</style>
<script>
import type { Snippet } from 'svelte';
let { children }: { children: Snippet } = $props();
</script>
<div>
{@render children()}
</div>
<style>
div {
margin: 3em;
}
</style>