mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:01:05 +08:00
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
```js
|
|
// Gizmo.stories.js | Gizmo.stories.jsx | Gizmo.stories.ts | Gizmo.stories.tsx
|
|
|
|
import Gizmo from './Gizmo';
|
|
|
|
export default {
|
|
component: Gizmo,
|
|
argTypes: {
|
|
width: {
|
|
control: { type: 'range', min: 400, max: 1200, step: 50 },
|
|
},
|
|
},
|
|
};
|
|
```
|