mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:11:07 +08:00
28 lines
591 B
Plaintext
28 lines
591 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent.component';
|
|
|
|
import imageFile from './static/image.png';
|
|
|
|
<Meta title="img" component={MyComponent}/>
|
|
|
|
export const image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
|
|
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
|
|
|
|
<Story
|
|
name="withAnImage"
|
|
render={() => ({
|
|
props: {
|
|
src: image.src,
|
|
alt: image.alt,
|
|
},
|
|
template: `<img src="{{src}}" alt="{{alt}}" />`,
|
|
})} />
|
|
``` |