storybook/docs/snippets/common/component-story-csf-argstable-customization.js.mdx
2021-04-18 04:39:54 +07:00

22 lines
383 B
Plaintext

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