storybook/docs/snippets/common/button-story-primary-composition.js.mdx
2021-01-28 00:11:22 +00:00

15 lines
243 B
Plaintext

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