storybook/docs/snippets/common/component-story-csf-argstable-customization.js.mdx
2021-06-28 23:00:33 +01:00

22 lines
425 B
Plaintext

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