storybook/docs/snippets/react/component-story-static-asset-cdn.js.mdx
2021-06-28 23:00:33 +01:00

13 lines
287 B
Plaintext

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