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