mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
16 lines
249 B
Plaintext
16 lines
249 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
# Button
|
|
|
|
<Story name="Primary">
|
|
<Button primary>Button</Button>
|
|
</Story>
|
|
```
|