storybook/docs/snippets/common/component-story-csf-argstable-customization.js.mdx
2020-08-08 03:33:41 +01:00

20 lines
345 B
Plaintext

```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,
},
},
},
};
```