mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
20 lines
378 B
Plaintext
20 lines
378 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
<Meta title="img" component={MyComponent}/>
|
|
|
|
<!-- Assume image.png is located in the "public" directory.-->
|
|
<Story
|
|
name="WithAnImage">
|
|
{{
|
|
props: {
|
|
src: '/image.png',
|
|
alt: 'my image',
|
|
},
|
|
}}
|
|
</Story>
|
|
``` |