79442570

Date: 2025-02-16 03:52:59
Score: 1.5
Natty:
Report link

try changing

{image ? <p>{image.name}</p> : <p>Drag & drop an image, or click to select</p>}

to

{image ? <p><img src={URL.createObjectURL(image)} /></p> : <p>Drag & drop an image, or click to select</p>}

more info:

https://react-dropzone.js.org/#:~:text=Preview

https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL_static

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: slattman