mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
11 lines
182 B
Plaintext
11 lines
182 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
export default {
|
|
title: 'MyComponent',
|
|
component: MyComponent,
|
|
};
|
|
// your templates and stories
|
|
``` |