mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
20 lines
368 B
Plaintext
20 lines
368 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',
|
|
}}
|
|
render={() => ({ // Your implementation here })} />
|
|
``` |