I've saved my image in Mongodb like that :
"img": {
"data": "<Binary Data>",
"contentType": "image/png"
}
I try to display it in ReactJS using this code :
..{products.map(product => {
<img src= {product.img} />
But nothing is displayed. Any idea please to fix it.