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