storybook/docs/snippets/react/button-story-with-blue-args.js.mdx
2021-02-23 00:26:03 +00:00

22 lines
397 B
Plaintext

```js
// Button.stories.js
import React from 'react';
import Button from './Button';
export default {
title: 'Button',
component: Button,
//👇 Creates specific parameters for the story
parameters: {
backgrounds: {
values: [
{ name: 'red', value: '#f00' },
{ name: 'green', value: '#0f0' },
{ name: 'blue', value: '#00f' },
],
},
},
};
```