mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
20 lines
557 B
Plaintext
20 lines
557 B
Plaintext
```md
|
|
<!-- YourComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { YourComponent } from './YourComponent';
|
|
|
|
<!--👇 The title prop determines where your story goes in the story list -->
|
|
<Meta title="YourComponent" component={YourComponent} />
|
|
|
|
<!--👇 We create a “template” of how args map to rendering -->
|
|
export const Template = (args) => <YourComponent {...args} />;
|
|
|
|
<!-- 👇 The args you need here will depend on your component -->
|
|
<Story
|
|
name="FirstStory"
|
|
args={{}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
``` |