mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
13 lines
324 B
Plaintext
13 lines
324 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://storybook.js.org/images/placeholders/350x150.png" alt="My CDN placeholder" />}
|
|
</Story>
|
|
``` |