mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:21:06 +08:00
19 lines
320 B
Plaintext
19 lines
320 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
export const Template = (args) => <Button {...args} />;
|
|
|
|
<Story
|
|
name="Basic"
|
|
args={{
|
|
label: 'hello'
|
|
}}>
|
|
{Template.bind({})}
|
|
<Story>
|
|
``` |