storybook/docs/snippets/svelte/button-story-rename-story.js.mdx
2021-05-06 17:36:21 +01:00

16 lines
225 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';
```