mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
20 lines
311 B
Plaintext
20 lines
311 B
Plaintext
```md
|
|
<!-- Button.stories.mdx-->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './button.component.ts';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
# Button
|
|
|
|
<Story
|
|
name="Primary"
|
|
render={() => ({
|
|
props: {
|
|
primary: true,
|
|
label: 'Button',
|
|
},
|
|
})} />
|
|
``` |