storybook/docs/snippets/common/component-story-custom-params.mdx.mdx
2021-11-03 23:31:14 +00:00

31 lines
553 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './Button';
<Meta title="Button" component={Button} />
export const Template = (args) =>({
// 👈 Your template goes here
});
<Story
name="Primary"
parameters={{
backgrounds: {
values: [
{ name: 'red', value: '#f00' },
{ name: 'green', value: '#0f0' },
{ name: 'blue', value: '#00f' },
],
},
}}
args={{
primary: true,
label: 'Button',
}}>
{Template.bind({})}
</Story>
```