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

13 lines
155 B
Plaintext

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