storybook/docs/snippets/common/component-story-csf-argstable-customization.js.mdx
2021-09-03 23:31:04 +01:00

24 lines
441 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
import { Button } from './Button';
export default {
component: Button,
argTypes: {
label: {
description: 'Overwritten description',
table: {
type: {
summary: 'Something short',
detail: 'Something really really long',
},
},
control: {
type: null,
},
},
},
};
```