storybook/docs/snippets/common/widget-story-controls-enum.js.mdx
2020-08-08 19:59:15 +01:00

14 lines
211 B
Plaintext

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