mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 06:51:46 +08:00
11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { Button, ButtonProps } from './Button';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
} as Meta;
|
|
```
|