mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +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>