mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
26 lines
470 B
Plaintext
26 lines
470 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',
|
|
};
|
|
|
|
<Story name="WithAnImage">
|
|
{{
|
|
props: {
|
|
src: image.src,
|
|
alt: image.alt,
|
|
},
|
|
template: `<img src="{{src}}" alt="{{alt}}" />`,
|
|
}}
|
|
</Story>
|
|
``` |