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