storybook/docs/snippets/common/storybook-addon-backgrounds-disable-backgrounds.js.mdx
2020-09-24 14:58:26 +02:00

8 lines
128 B
Plaintext

```js
// Button.stories.js
export const Large = Template.bind({});
Large.parameters = {
backgrounds: { disable: true }
};
```