I hope that somebody can help me with my problem.
I started learning React and I want to display images dynamically from an object named "project".
I am looping inside "projects" and pass each item as props of a component "Project".
It displays the other items (name, description, alt) but I can't get the images.
I tried this method : <img src={require(`./img/${project.image}`)} but it doesn't work.
There is no error message, but it shows nothing.
I saw a lot of people have the same problem, but I tried everything...I don't know what to do.
This is my object:

The organization of my folder:

My component Project:

And the website:

<img src={/img/${project.image}}>working?