mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
14 lines
346 B
Plaintext
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 };
|
|
```
|