storybook/docs/snippets/react/component-story-static-asset-with-import.js.mdx
2020-10-07 12:23:34 +08:00

19 lines
282 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} />
);
```