mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
14 lines
300 B
Plaintext
14 lines
300 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta title="img" component={MyComponent} />
|
|
|
|
<Story
|
|
name="WithAnImage">
|
|
<img src="https://place-hold.it/350x150" alt="My CDN placeholder" />}
|
|
</Story>
|
|
``` |