mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
17 lines
300 B
Plaintext
17 lines
300 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
<Story
|
|
name="Primary"
|
|
args={{
|
|
variant: 'primary',
|
|
}}
|
|
render={() => ({ // Your implementation here })} />
|
|
</Story>
|
|
``` |