mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
22 lines
391 B
Plaintext
22 lines
391 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { ArgsTable, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta title="MyComponent" component={MyComponent} />
|
|
|
|
export const Template = (args) => ({
|
|
//👇 Your template goes here
|
|
});
|
|
|
|
# My Component!
|
|
|
|
<Story
|
|
name="My Story" >
|
|
{Template.bind({})}
|
|
</Story>
|
|
|
|
<ArgsTable story="My Story" />
|
|
``` |