mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
25 lines
399 B
Plaintext
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}
|
|
/>
|
|
``` |