storybook/docs/snippets/react/component-story-static-asset-cdn.mdx.mdx
Norbert de Langen 3d06286155
change the location of placeholder images to something we host ourselves
to reduce flake (you can ask yann what that means)
2022-08-05 15:05:10 +02:00

13 lines
324 B
Plaintext

```md
<!-- MyComponent.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { MyComponent } from './MyComponent';
<Meta title="img" component={MyComponent} />
<Story name="WithAnImage">
<img src="https://storybook.js.org/images/placeholders/350x150.png" alt="My CDN placeholder" />}
</Story>
```