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