mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
20 lines
390 B
Plaintext
20 lines
390 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './my-component.component';
|
|
|
|
<Meta title="MyComponent" component={MyComponent}/>
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="ExampleStory"
|
|
args={{
|
|
propertyA: process.env.STORYBOOK_DATA_KEY,
|
|
}}
|
|
render={(args) => ({
|
|
props: args,
|
|
})} />
|
|
</Canvas>
|
|
``` |