mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
27 lines
430 B
Plaintext
27 lines
430 B
Plaintext
```html
|
|
<!-- MyComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
import imageFile from './static/image.png';
|
|
|
|
let image = {
|
|
src: imageFile,
|
|
alt: 'my image',
|
|
};
|
|
</script>
|
|
|
|
<Meta
|
|
title="img"
|
|
component={MyComponent}
|
|
/>
|
|
|
|
<Template >
|
|
<MyComponent {image} />
|
|
</Template>
|
|
|
|
<Story name="WithAnImage" />
|
|
``` |