storybook/docs/snippets/common/storybook-addon-backgrounds-disable-backgrounds.js.mdx
2021-06-28 23:00:33 +01:00

8 lines
190 B
Plaintext

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