mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
29 lines
420 B
Plaintext
29 lines
420 B
Plaintext
```md
|
|
<!--- YourComponent.stories.mdx -->
|
|
|
|
import { Meta, Story, Canvas } from '@storybook/addon-docs';
|
|
|
|
import { YourComponent } from './YourComponent'
|
|
|
|
<Meta
|
|
title="My Story"
|
|
component={YourComponent}
|
|
argTypes={{
|
|
foo:{
|
|
table:{
|
|
disable: true,
|
|
}
|
|
}
|
|
}} />
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="My Story"
|
|
args={{
|
|
foo: 'bar',
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
</Canvas>
|
|
```
|