storybook/docs/snippets/common/component-story-csf-argstable-customization.js.mdx
2021-05-06 21:05:56 +01: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,
},
},
},
};
```