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