mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
```md
|
|
<!--- YourComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
import { YourComponent } from './your-component'
|
|
|
|
<Meta
|
|
title='My Story'
|
|
component={YourComponent}
|
|
parameters={{ controls: { sort: 'requiredFirst' } }}
|
|
/>
|
|
```
|