mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
```js
|
|
// addons/backgrounds/src/preset/addParameter.tsx
|
|
|
|
export const parameters = {
|
|
backgrounds: {
|
|
values: [
|
|
{ name: 'light', value: '#F8F8F8' },
|
|
{ name: 'dark', value: '#333333' },
|
|
],
|
|
},
|
|
};
|
|
``` |