storybook/docs/snippets/svelte/component-story-static-asset-with-import.mdx.mdx
2021-11-06 03:20:29 +00:00

27 lines
449 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import MyComponent from './MyComponent.svelte';
import imageFile from './static/image.png';
<Meta title="img" component={MyComponent} />
export const image = {
src: imageFile,
alt: 'my image',
};
<Story name="WithAnImage">
{() => {
return {
Component: MyComponent,
props: {
image: image,
},
};
}}
</Story>
```