mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
27 lines
449 B
Plaintext
27 lines
449 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
import imageFile from './static/image.png';
|
|
|
|
<Meta title="img" component={MyComponent} />
|
|
|
|
export const image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
|
|
<Story name="WithAnImage">
|
|
{() => {
|
|
return {
|
|
Component: MyComponent,
|
|
props: {
|
|
image: image,
|
|
},
|
|
};
|
|
}}
|
|
</Story>
|
|
``` |