mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
16 lines
274 B
Plaintext
16 lines
274 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',
|
|
}
|
|
}} />
|
|
``` |