mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
14 lines
194 B
Plaintext
14 lines
194 B
Plaintext
```js
|
|
// Gizmo.stories.js
|
|
|
|
export default {
|
|
title: 'Gizmo',
|
|
component: Gizmo,
|
|
argTypes: {
|
|
width: {
|
|
control: { type: 'range', min: 400, max: 1200, step: 50 },
|
|
},
|
|
},
|
|
};
|
|
```
|