mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
22 lines
367 B
Plaintext
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,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
``` |