mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
15 lines
205 B
Plaintext
15 lines
205 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
argTypes: {
|
|
variant: {
|
|
options: ['primary', 'secondary'],
|
|
control: { type: 'radio' }
|
|
}
|
|
}
|
|
};
|
|
```
|