mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
21 lines
473 B
Plaintext
21 lines
473 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 -->
|
|
|
|
<Story
|
|
name="withAnImage"
|
|
render={() => ({
|
|
Component: MyComponent,
|
|
props: {
|
|
src: 'https://place-hold.it/350x150',
|
|
alt: 'my image',
|
|
},
|
|
})} />
|
|
``` |