mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:51:08 +08:00
13 lines
288 B
Plaintext
13 lines
288 B
Plaintext
```ts
|
|
// CSF 3
|
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
import { Button } from './Button';
|
|
|
|
const meta: Meta<typeof Button> = { component: Button };
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof Button>;
|
|
|
|
export const Primary: Story = { args: { primary: true } };
|
|
```
|