storybook/docs/snippets/react/button-story-with-args.js.mdx
2023-05-25 21:44:48 +01:00

17 lines
197 B
Plaintext

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