mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
20 lines
372 B
Plaintext
20 lines
372 B
Plaintext
```html
|
|
<!-- MyComponent.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
</script>
|
|
|
|
<Meta
|
|
title="img"
|
|
component={MyComponent}
|
|
/>
|
|
|
|
<Template>
|
|
<MyComponent src="https://place-hold.it/350x150" alt="My CDN placeholder" />
|
|
</Template>
|
|
|
|
<Story name="WithAnImage" />
|
|
``` |