storybook/docs/snippets/react/button-story-component-args-primary.js.mdx
2021-09-03 23:31:04 +01:00

20 lines
340 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx
import React from 'react';
import { Button } from './Button';
export default {
component: Button,
//👇 Creates specific argTypes
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
//👇 Now all Button stories will be primary.
primary: true,
},
};
```