mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
22 lines
310 B
Plaintext
22 lines
310 B
Plaintext
```md
|
|
<!-- Gizmo.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { Gizmo } from './Gizmo';
|
|
|
|
<Meta
|
|
title="Gizmo"
|
|
component={Gizmo}
|
|
argTypes={{
|
|
width: {
|
|
control: {
|
|
type: 'range',
|
|
min: 400,
|
|
max: 1200,
|
|
step: 50,
|
|
},
|
|
},
|
|
}}
|
|
/>
|
|
``` |