storybook/docs/snippets/react/component-story-static-asset-cdn.js.mdx
2021-05-06 21:05:56 +01:00

13 lines
210 B
Plaintext

```js
// MyComponent.stories.js
import React from 'react';
export default {
title: 'img',
};
export const withAnImage = () => (
<img src="https://place-hold.it/350x150" alt="My CDN placeholder" />
);
```