storybook/docs/snippets/common/button-story-with-parameters.js.mdx
2020-08-07 17:05:17 +01:00

17 lines
275 B
Plaintext

```js
// Button.stories.js
export const Primary = Template.bind({});
Primary.args ={
primary: true,
label: 'Button',
}
Primary.parameters = {
backgrounds:{
values: [
{ name: 'red', value: '#f00', },
{ name: 'green', value: '#0f0', },
],
}
};
```