storybook/docs/snippets/react/button-story-with-args.js.mdx

14 lines
222 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: 'Primary',
};
```