mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
19 lines
250 B
Plaintext
19 lines
250 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
parameters: {
|
|
docs: {
|
|
page: null
|
|
}
|
|
},
|
|
};
|
|
```
|