storybook/docs/snippets/common/storybook-addon-backgrounds-disable-grid.mdx.mdx
2021-11-09 01:41:54 +00:00

25 lines
394 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: {
grid: {
disable: true,
}
}
}} >
{Template.bind({})}
</Story>
```