storybook/docs/snippets/common/button-story-with-parameters.js.mdx
2021-06-28 23:00:33 +01:00

17 lines
337 B
Plaintext

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