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

13 lines
175 B
Plaintext

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