storybook/docs/snippets/common/button-story-controls-radio-group.js.mdx
2023-05-25 21:04:33 +01:00

16 lines
229 B
Plaintext

```js
// Button.stories.js|jsx
import { Button } from './Button';
export default {
component: Button,
argTypes: {
variant: {
options: ['primary', 'secondary'],
control: { type: 'radio' },
},
},
};
```