storybook/docs/snippets/react/button-story-with-parameters.ts.mdx
Norbert de Langen 84a4bde3f0
FIX
2020-12-09 14:42:24 +01:00

20 lines
374 B
Plaintext

```js
// Button.stories.tsx
import React from 'react';
import { Button, ButtonProps } from './Button';
import { Meta } from '@storybook/react';
export default {
title: 'Button',
component: Button,
parameters: {
backgrounds: {
values: [
{ name: 'red', value: '#f00', },
{ name: 'green', value: '#0f0', },
],
}
},
} as Meta;
```