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

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