My image path is not working, I did a better solution for my case I hope this works for you too.
The problem for my case is:
I did use
import logo from './components/image/Serenity.png';
but the problem with this is when I put it on
<img={logo} alt=''/>
it doesn't work.
So the solution for my problem is:
Instead of import logo from './components/image/Serenity.png';
I did one of these
import logo from '../images/Serenity.png';const logo = require("../images/Serenity.png")
then it worked.