storybook/docs/snippets/common/storybook-addon-backgrounds-disable-backgrounds.js.mdx
2021-01-28 00:11:22 +00:00

8 lines
148 B
Plaintext

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