storybook/docs/snippets/react/button-story-with-args.js.mdx
2021-08-28 01:52:57 +01:00

17 lines
214 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx
import { Button } from './Button';
export default {
component: Button,
};
export const Primary = {
args: {
primary: true,
label: 'Button',
},
};
```