storybook/docs/snippets/react/component-story-static-asset-with-import.js.mdx
2021-09-06 22:03:15 +01:00

21 lines
370 B
Plaintext

```js
// MyComponent.stories.js | MyComponent.stories.jsx | MyComponent.stories.ts | MyComponent.stories.tsx
import React from 'react';
import imageFile from './static/image.png';
export default {
title: 'img',
};
const image = {
src: imageFile,
alt: 'my image',
};
export const WithAnImage = {
render: () => <img src={image.src} alt={image.alt} />,
};
```