storybook/docs/snippets/svelte/button-story-rename-story.js.mdx
2021-09-06 22:03:15 +01:00

21 lines
282 B
Plaintext

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