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