storybook/docs/snippets/common/storybook-addon-backgrounds-configure-backgrounds.js.mdx
2020-10-07 12:23:34 +08:00

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' },
],
},
},
};
```