mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:11:07 +08:00
25 lines
575 B
Plaintext
25 lines
575 B
Plaintext
```md
|
|
<!-- MyComponent.stories.js -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
<Meta title="img" component={MyComponent} />
|
|
|
|
<!--
|
|
👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
See https://storybook.js.org/docs/7.0/svelte/api/csf
|
|
to learn how to use render functions.
|
|
-->
|
|
|
|
<Story
|
|
name="WithAnImage"
|
|
render={() => ({
|
|
Component: MyComponent,
|
|
props: {
|
|
src: 'https://place-hold.it/350x150',
|
|
alt: 'my image',
|
|
},
|
|
})} />
|
|
``` |