storybook/docs/snippets/common/widget-story-controls-enum.js.mdx
2020-08-12 20:34:11 +08:00

17 lines
242 B
Plaintext

```js
// Widget.stories.js
export default {
title: 'Widget',
component: Widget,
argTypes: {
loadingState: {
control: {
type: 'inline-radio',
options: ['loading', 'error', 'ready'],
},
},
},
};
```