storybook/docs/snippets/common/button-story-disable-backgrounds.js.mdx
2020-08-08 19:59:15 +01:00

8 lines
128 B
Plaintext

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