storybook/docs/snippets/react/csf-2-example-starter.ts.mdx
2022-12-05 12:37:36 -07:00

14 lines
346 B
Plaintext

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