mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
17 lines
337 B
Plaintext
17 lines
337 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { ArgsTable, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta title="MyComponent" component={MyComponent} />
|
|
|
|
# My Component!
|
|
|
|
<Story
|
|
name="My Story"
|
|
render={() => ({ // Your implementation here })} />
|
|
|
|
<ArgsTable story="My Story" />
|
|
``` |