storybook/docs/snippets/common/component-story-csf-argstable-customization.js.mdx
2020-10-07 12:23:34 +08:00

22 lines
367 B
Plaintext

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