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