storybook/docs/snippets/svelte/your-component.native-format.mdx
2021-05-06 17:36:21 +01:00

30 lines
581 B
Plaintext

```html
<!-- YourComponent.stories.svelte -->
<script>
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
import YourComponent from './YourComponent.svelte';
</script>
<!--👇 The title determines where your story goes in the story list -->
<Meta
title="YourComponent"
component={YourComponent}
argTypes={{
/* Customize your args here depending on your component */
}}
/>
<Template let:args>
<Button {...args} />
</Template>
<Story
name="FirstStory"
args={{
/* The args you need here will depend on your component */
}}
/>
```