storybook/docs/snippets/common/button-story-primary-composition.js.mdx
2021-08-28 01:52:57 +01:00

24 lines
331 B
Plaintext

```js
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
import Button from './Button';
export default {
component: Button,
};
export const Primary = {
args: {
primary: true,
label: 'Button',
},
};
const Secondary = {
args: {
...Primary.args,
primary: false,
},
};
```