storybook/docs/snippets/react/component-story-static-asset-cdn.js.mdx
Danilo Cabello 7dff362685
Remove comment that does not apply to CDN
It was copied from another code sample.
2020-09-07 15:03:29 -04:00

14 lines
210 B
Plaintext

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