storybook/docs/snippets/react/button-story-component-args-primary.js.mdx
2020-08-07 17:05:17 +01:00

18 lines
266 B
Plaintext

```js
// Button.story.js
import Button from './Button';
export default {
title: "Button",
component: Button,
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
// Now all Button stories will be primary.
primary: true,
},
};
```