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

16 lines
283 B
Plaintext

```ts
// Button.stories.tsx
import React from 'react';
import { Story } from '@storybook/react/types-6-0';
const Template: Story<ButtonProps> = (args) => <Button {...args} />;
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Primary',
};
```