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

13 lines
155 B
Plaintext

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