mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
```js
|
|
// MyComponent.story.js | MyComponent.story.jsx | MyComponent.story.ts | MyComponent.story.tsx
|
|
|
|
import MyComponent from './MyComponent';
|
|
|
|
export default {
|
|
title: 'Path/To/MyComponent',
|
|
component: MyComponent,
|
|
decorators: [ ... ],
|
|
parameters: { ... }
|
|
}
|
|
``` |