mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
17 lines
322 B
Plaintext
17 lines
322 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
// To apply a set of backgrounds to all stories of Button:
|
|
export default {
|
|
title: 'Button',
|
|
parameters: {
|
|
backgrounds: {
|
|
default: 'twitter',
|
|
values: [
|
|
{ name: 'twitter', value: '#00aced' },
|
|
{ name: 'facebook', value: '#3b5998' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
``` |