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