mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
14 lines
320 B
Plaintext
14 lines
320 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"
|
|
render={() => ({
|
|
template: '<img src="/image.png" alt="my image" />',
|
|
})} />
|
|
``` |