mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
13 lines
226 B
Plaintext
13 lines
226 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
<Meta title="img" />
|
|
|
|
<Story name="withAnImage">
|
|
{{
|
|
template: `<img src="/otherimage.jpg" alt="my image"/>`,
|
|
}}
|
|
</Story>
|
|
``` |