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