storybook/docs/snippets/common/storybook-addon-backgrounds-disable-backgrounds.mdx.mdx
2021-11-04 21:07:00 +00:00

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