storybook/docs/snippets/react/button-story-component-args-primary.ts.mdx
Norbert de Langen 84a4bde3f0
FIX
2020-12-09 14:42:24 +01:00

20 lines
351 B
Plaintext

```ts
// Button.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react';
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;
```