mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
20 lines
353 B
Plaintext
20 lines
353 B
Plaintext
```md
|
|
<!-- Button.stories.mdx-->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Button from './button.component';
|
|
|
|
<Meta title="Components/Button" component={Button} />
|
|
|
|
export const Template = (args) => ({ props: args });
|
|
|
|
<Story
|
|
name="Primary"
|
|
args={{
|
|
primary: true,
|
|
label: 'Button',
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |