storybook/docs/snippets/react/csf-2-example-starter.ts.mdx
2023-01-06 19:15:31 +00:00

16 lines
337 B
Plaintext

```tsx
// CSF 2
import { ComponentStory, ComponentMeta } from '@storybook/react';
import { Button } from './Button';
export default {
title: 'Button',
component: Button,
} as ComponentMeta<typeof Button>;
export const Primary: ComponentStory<typeof Button> = (args) => <Button {...args} />;
Primary.args = { primary: true };
```