storybook/docs/snippets/react/button-story-with-args.ts.mdx
2020-08-07 17:05:17 +01:00

12 lines
201 B
Plaintext

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