mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
19 lines
464 B
Plaintext
19 lines
464 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.ts
|
|
|
|
// To apply a grid to all stories of Button:
|
|
export default {
|
|
title: 'Button',
|
|
parameters: {
|
|
backgrounds: {
|
|
grid: {
|
|
cellSize: 20,
|
|
opacity: 0.5,
|
|
cellAmount: 5,
|
|
offsetX: 16, // default is 0 if story has 'fullscreen' layout, 16 if layout is 'padded'
|
|
offsetY: 16, // default is 0 if story has 'fullscreen' layout, 16 if layout is 'padded'
|
|
},
|
|
},
|
|
},
|
|
};
|
|
``` |