storybook/docs/snippets/react/button-story-with-addon-example.js.mdx
2020-10-07 12:23:34 +08:00

17 lines
272 B
Plaintext

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