mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
12 lines
255 B
Plaintext
12 lines
255 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { Button } from './button.component';
|
|
|
|
export default {
|
|
component: Button,
|
|
//👇 Title is optional, you can omit it and Storybook automatically generates the title for the story
|
|
title: 'Components/Button',
|
|
};
|
|
```
|