mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
19 lines
361 B
Plaintext
19 lines
361 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
import MyComponent from './MyComponent.svelte';
|
|
|
|
export default {
|
|
component: MyComponent,
|
|
title: 'img',
|
|
};
|
|
|
|
// Assume image.png is located in the "public" directory.
|
|
export const withAnImage = () => ({
|
|
Component: MyComponent,
|
|
props: {
|
|
src: 'https://place-hold.it/350x150',
|
|
alt: 'My CDN placeholder',
|
|
},
|
|
});
|
|
``` |