storybook/docs/snippets/react/component-story-static-asset-without-import.js.mdx
2020-08-09 20:26:34 +01:00

14 lines
239 B
Plaintext

```js
// MyComponent.stories.js
import React from 'react';
export default {
title: 'img',
};
// assume image.png is located in the "public" directory.
export const withAnImage = () => (
<img src="/image.png" alt="my image" />
);
```