storybook/docs/snippets/svelte/component-story-static-asset-cdn.mdx.mdx
2021-10-11 19:53:39 +01:00

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',
},
})} />
```