storybook/docs/snippets/common/storybook-addon-backgrounds-configure-grid.mdx.mdx
2021-10-14 23:26:05 +01:00

25 lines
399 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta } from '@storybook/addon-docs';
import { Button } from './Button';
<!-- To apply a grid to all stories of Button -->
<Meta
title="Button"
parameters={{
backgrounds: {
grid: {
cellSize: 20,
opacity: 0.5,
cellAmount: 5,
offsetX: 16,
offsetY: 16,
},
},
}}
component={Button}
/>
```