mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
21 lines
410 B
Plaintext
21 lines
410 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.svelte0;
|
|
|
|
<Meta title="img" component={MyComponent} />
|
|
|
|
<!-- Assume image.png is located in the "public" directory. -->
|
|
|
|
<Story
|
|
name="withAnImage"
|
|
render={() => ({
|
|
Component: MyComponent,
|
|
props: {
|
|
src: '/image.png',
|
|
alt: 'my image',
|
|
},
|
|
})} />
|
|
``` |