mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:01:08 +08:00
16 lines
389 B
Plaintext
16 lines
389 B
Plaintext
```js
|
|
// MyComponent.story.js|jsx|ts|tsx
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
decorators: [ ... ],
|
|
parameters: { ... }
|
|
}
|
|
``` |