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