I tried to get dynamically the directory of the images using require but doesn't work
import React from 'react';
import './produto.css'
function Produto({data}) {
const { id, name, price, score, image } = data;
return <div className = 'produto-card-container' key = {id}>
<div className = 'produto-card-flex'>
<img alt = {image} src = {require(`../../Assets/${image}`)}/>
</div>
</div>
}
export default Produto;
but in my page the image appear likes this

i tried to console the path and the image name to see what's happened My console log of the const image
super-mario-odyssey.png
produto.js:8 call-of-duty-infinite-warfare.png
produto.js:8 the-witcher-iii-wild-hunt.png
produto.js:8 call-of-duty-wwii.png
produto.js:8 mortal-kombat-xl.png
produto.js:8 shards-of-darkness.png
produto.js:8 terra-media-sombras-de-mordor.png
produto.js:8 fifa-18.png
produto.js:8 horizon-zero-dawn.png