storybook/docs/snippets/react/button-story-auto-docs.js.mdx
2022-12-13 18:22:21 +00:00

30 lines
453 B
Plaintext

```js
// Button.stories.js
import { Button } from './Button';
export default {
title: 'Button',
component: Button,
//👇 Enables auto-generated documentation for the component story
tags: ['docsPage'],
argTypes: {
backgroundColor: { control: 'color' },
},
};
export const Primary = {
args: {
primary: true,
label: 'Button',
},
};
export const Secondary = {
args: {
...Primary.args,
primary: false,
},
};
```