mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
22 lines
391 B
Plaintext
22 lines
391 B
Plaintext
```md
|
|
<!-- MyComponent.stories.js -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
<Meta title="img" component={MyComponent} />
|
|
|
|
<Story
|
|
name="WithAnImage">
|
|
{() => {
|
|
return {
|
|
Component: MyComponent,
|
|
props: {
|
|
src: 'https://place-hold.it/350x150',
|
|
alt: 'my image',
|
|
},
|
|
};
|
|
}}
|
|
</Story>
|
|
``` |