storybook/docs/snippets/common/storybook-addon-backgrounds-disable-backgrounds.js.mdx
2020-10-07 12:23:34 +08:00

8 lines
128 B
Plaintext

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