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

14 lines
196 B
Plaintext

```js
// Button.stories.js
export default {
component: 'demo-button',
argTypes: {
variant: {
options: ['primary', 'secondary'],
control: { type: 'radio' },
},
},
};
```