storybook/docs/snippets/react/button-story-component-args-primary.ts.mdx
2020-08-22 16:55:57 -04:00

20 lines
361 B
Plaintext

```ts
// Button.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react/types-6-0';
import Button from './Button';
export default {
title: "Button",
component: Button,
argTypes: {
backgroundColor: { control: 'color' },
},
args: {
// Now all Button stories will be primary.
primary: true,
},
} as Meta;
```