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

20 lines
326 B
Plaintext

```js
// Button.stories.js
import Button from './Button.svelte';
export default {
title: 'Button',
//👇 Creates specific parameters for the story
parameters: {
myAddon: {
data: 'this data is passed to the addon',
},
},
};
export const Basic = (args) => ({
Component: Button,
props: args,
});
```