storybook/docs/snippets/svelte/button-story-rename-story.js.mdx
2021-05-07 18:07:39 +01:00

15 lines
224 B
Plaintext

```js
// Button.stories.js
import Button from './Button.svelte';
export const Primary = () => ({
Component: Button,
props: {
primary: true,
label: 'Button',
},
});
Primary.storyName = 'I am the primary';
```