```js // Gizmo.stories.js | Gizmo.stories.ts export default { title: 'Gizmo', component: Gizmo, argTypes: { width: { control: { type: 'range', min: 400, max: 1200, step: 50 }, }, }, }; ```