mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
23 lines
461 B
Plaintext
23 lines
461 B
Plaintext
```md
|
|
<!-- Button.stories.mdx-->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './Button';
|
|
|
|
<Meta title="Button" component={Button} />
|
|
|
|
<!-- 👇 We create a “template” of how args map to rendering -->
|
|
|
|
export const Template = (args) => <Button {...args} />;
|
|
|
|
<!-- 👇 Each story then reuses that template -->
|
|
<Story
|
|
name="Primary"
|
|
args={{
|
|
primary: true,
|
|
label: 'Button',
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |