mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
17 lines
262 B
Plaintext
17 lines
262 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta } from '@storybook/addon-docs';
|
|
|
|
import { YourComponent } from './YourComponent'
|
|
|
|
<Meta
|
|
title="YourComponent"
|
|
component={YourComponent}
|
|
argTypes={{
|
|
foo:{
|
|
removeIf: true,
|
|
}
|
|
}} />
|
|
```
|