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

13 lines
202 B
Plaintext

```ts
// Button.stories.ts
const Template: Story<ButtonProps> = (args) => <Button {...args} />;
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Primary',
};
```