Assume I have a client and server folder. My server folder contains the image, and my client has code like this:
return <img src={} />;
I am confused on what the “src” should be. Should it be a link to the server folder relative to my client folder? Should it be an absolute path (if so, what’s the absolute path)?
Also, what happens if I have authentication such that the user needs to send an authentication token to the server to retrieve the image?