mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
23 lines
430 B
Plaintext
23 lines
430 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta title="MyComponent" component={MyComponent}/>
|
|
|
|
export const Template = (args) => ({
|
|
//👇 Your template goes here
|
|
});
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="ExampleStory"
|
|
args={{
|
|
exampleProp: process.env.EXAMPLE_VAR,
|
|
}}>
|
|
{Template.bind({})}
|
|
</Story>
|
|
</Canvas>
|
|
``` |