mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
16 lines
337 B
Plaintext
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 };
|
|
```
|