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