storybook/docs/snippets/common/gizmo-story-controls-customization.js.mdx
2021-11-09 01:41:54 +00:00

19 lines
413 B
Plaintext

```js
// Gizmo.stories.js|jsx|ts|tsx
import { Gizmo } from './Gizmo';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
* to learn how to generate automatic titles
*/
title: 'Gizmo',
component: Gizmo,
argTypes: {
width: {
control: { type: 'range', min: 400, max: 1200, step: 50 },
},
},
};
```