storybook/docs/snippets/react/button-story-with-args.js.mdx
2020-08-06 19:03:05 +01:00

13 lines
220 B
Plaintext

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