Allows to write your stories in Svelte syntax and compiles it to Storybook’s CSF syntax. See the native format tab in the getting started docs for an example.
It supports:
<script>
import { Meta, Story, Template } from '@storybook/addon-svelte-csf';
import Button from './Button.svelte';
let count = 0;
function handleClick() {
count += 1;
}
</script>
<Meta title="Button" component={Button}/>
<Template let:args>
<Button {...args} on:click={handleClick}>
You clicked: {count}
</Button>
</Template>
<Story name="Rounded" args={{rounded: true}}/>
<Story name="Square" source args={{rounded: false}}/>
<!-- Dynamic snippet should be disabled for this story -->
<Story name="Button No Args">
<Button>Label</Button>
</Story>
.storybook/main.js, add *.stories.svelte to the stories patterns.storybook/main.js, add @storybook/addon-svelte-csf to the addons array