storybook/docs/snippets/react/button-story-with-args.js.mdx
2020-10-07 12:23:34 +08:00

16 lines
250 B
Plaintext

```js
// Button.stories.js
import React from 'react';
const Template = (args) => <Button {...args} />;
// Each story then reuses that template
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Primary',
};
```