storybook/docs/snippets/react/component-story-static-asset-cdn.js.mdx
2020-08-09 20:26:34 +01:00

14 lines
267 B
Plaintext

```js
// MyComponent.stories.js
import React from 'react';
export default {
title: 'img',
};
// assume image.png is located in the "public" directory.
export const withAnImage = () => (
<img src="https://placehold.it/350x150" alt="My CDN placeholder" />
);
```