storybook/docs/snippets/react/component-story-static-asset-with-import.js.mdx
2021-02-23 00:26:03 +00:00

18 lines
277 B
Plaintext

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