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