storybook/docs/snippets/react/button-story-with-args.ts.mdx
2021-10-22 15:25:03 -03:00

25 lines
491 B
Plaintext

```ts
// Button.stories.ts | Button.stories.tsx
import React from 'react';
import { Story, Meta } from '@storybook/react';
import { Button, ButtonProps } 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',
};
```