storybook/docs/snippets/common/gizmo-story-controls-customization.js.mdx
2021-01-28 00:11:22 +00:00

14 lines
213 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 },
},
},
};
```