mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
22 lines
582 B
Plaintext
22 lines
582 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
|
|
<Meta title="img" component={MyComponent}/>
|
|
|
|
<!--
|
|
👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
See https://storybook.js.org/docs/7.0/angular/api/csf
|
|
to learn how to use render functions.
|
|
-->
|
|
|
|
<Story
|
|
name="WithAnImage"
|
|
render={() => ({
|
|
template: `<img src="https://storybook.js.org/images/placeholders/350x150.png" alt="My CDN placeholder" />`,
|
|
})} />
|
|
``` |