'Module not found: Error: Can't resolve img?

I just started learn coding and I was trying to do a project with reactJs and bootstrap. I wanna upload a logo to my project but I got error. Can you explain me that how can I fix? Thank you.

Note: When I start the project without img, Im getting js file.

enter image description here

enter image description here

enter image description here



Solution 1:[1]

Import your image first:

import logo from "../../../components/images/app-logo.svg";

Then you can use it as follows:

<img src={logo} alt="logo" />

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 bnays mhz