mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { YourComponent } from './your-component'
|
|
|
|
<Meta
|
|
title='YourComponent'
|
|
argTypes={{
|
|
foo:{
|
|
control: false
|
|
}
|
|
}}
|
|
component={YourComponent} />
|
|
``` |