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

18 lines
354 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 = () => <img src={image.src} alt={image.alt} />;
```