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

15 lines
237 B
Plaintext

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