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