storybook/docs/snippets/react/button-story-with-args.ts.mdx
2021-08-05 18:51:23 +01:00

24 lines
477 B
Plaintext

```ts
// Button.stories.ts | Button.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react';
import { Button } from './Button';
export default {
component: Button,
title: 'Components/Button',
} as Meta;
//👇 We create a “template” of how args map to rendering
const Template: Story<ButtonProps> = (args) => <Button {...args} />;
export const Primary = Template.bind({});
Primary.args = {
primary: true,
label: 'Button',
};
```