mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
11 lines
294 B
Plaintext
11 lines
294 B
Plaintext
```js
|
|
// YourComponent.stories.js | YourComponent.stories.jsx | YourComponent.stories.ts | YourComponent.stories.tsx
|
|
|
|
import { YourComponent } from './your-component'
|
|
|
|
export default {
|
|
title:'My Story',
|
|
component: YourComponent,
|
|
parameters: { controls: { sort: 'requiredFirst' } },
|
|
};
|
|
``` |