How do I reference an image directly. What I mean is if I have
export default function ExamplePage() {
return (
<img src='some-image.png'>
);
}
It will be a blank website with the image, instead of the image itself. I need to reference the image because this is used by the application to download images directly based on the GET parameters. How can I do this in react?