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