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

14 lines
184 B
Plaintext

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