storybook/docs/snippets/react/button-story-with-args.ts.mdx
Norbert de Langen 84a4bde3f0
FIX
2020-12-09 14:42:24 +01:00

16 lines
273 B
Plaintext

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