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

15 lines
285 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
const Primary = ButtonStory.bind({});
Primary.args = {
primary: true,
label: 'Button',
}
const Secondary = ButtonStory.bind({});
Secondary.args = {
...Primary.args,
primary: false,
}
```