mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:21:06 +08:00
17 lines
367 B
Plaintext
17 lines
367 B
Plaintext
```js
|
|
// Button.stories.js
|
|
import { Button } from './Button';
|
|
export default {
|
|
component: Button,
|
|
title: 'Button',
|
|
argTypes: {
|
|
// button can be passed a label or an image, not both
|
|
label: { control: 'text', removeIf: 'image' },
|
|
image: {
|
|
control: { type: 'select', options: ['foo.jpg', 'bar.jpg'] },
|
|
removeIf: 'label',
|
|
},
|
|
},
|
|
};
|
|
```
|