mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
18 lines
282 B
Plaintext
18 lines
282 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta
|
|
title="Button"
|
|
component={Button}
|
|
argTypes={{
|
|
variant: {
|
|
options: ['primary', 'secondary'],
|
|
control: { type: 'radio' }
|
|
}
|
|
}}
|
|
/>
|
|
``` |