storybook/docs/snippets/common/gizmo-story-controls-customization.js.mdx
2020-08-19 15:12:21 +02:00

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