storybook/docs/snippets/common/storybook-story-layout-param.mdx.mdx
2022-07-07 19:26:21 +01:00

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 })} />
```