storybook/docs/snippets/common/storybook-story-layout-param.mdx.mdx
2021-11-09 01:41:54 +00:00

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>
```