storybook/docs/snippets/react/button-story-with-addon-example.js.mdx
2021-06-28 23:00:33 +01:00

19 lines
345 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx
import React from 'react';
import Button from './Button';
export default {
title: 'Button',
//👇 Creates specific parameters for the story
parameters: {
myAddon: {
data: 'this data is passed to the addon',
},
},
};
export const Basic = () => <Button>hello</Button>;
```