storybook/docs/snippets/common/button-story-controls-radio-group.js.mdx
2021-02-13 13:21:47 +01:00

16 lines
220 B
Plaintext

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