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

14 lines
316 B
Plaintext

```js
// MyComponent.stories.js | MyComponent.stories.jsx | MyComponent.stories.ts | MyComponent.stories.tsx
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" />
);
```