mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
24 lines
371 B
Plaintext
24 lines
371 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) => ({
|
|
//👇 Your template goes here
|
|
});
|
|
|
|
|
|
<Story
|
|
name="Large"
|
|
parameters={{
|
|
backgrounds: {
|
|
disable: true,
|
|
},
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |