mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
12 lines
198 B
Plaintext
12 lines
198 B
Plaintext
```js
|
|
// MyComponent.story.js
|
|
|
|
import MyComponent from './MyComponent';
|
|
|
|
export default {
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
decorators: [ ... ],
|
|
parameters: { ... }
|
|
}
|
|
``` |