mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
14 lines
211 B
Plaintext
14 lines
211 B
Plaintext
```js
|
|
// Widget.stories.js
|
|
|
|
export default {
|
|
title: 'Widget',
|
|
component: Widget,
|
|
argTypes: {
|
|
loadingState: {
|
|
type: 'inline-radio',
|
|
options: ['loading', 'error', 'ready'],
|
|
},
|
|
},
|
|
};
|
|
``` |