I am unable to access right-arrow.png which is in my images folder. I am trying to access this from src/components/Home. right-arrow.png is located in src/images.
import rightArrow from ".../images/right-arrow.png";
^this line is giving me the error
CodePudding user response:
You are using 3 dots to go up a folder.It should be 2 dots to go up a folder like so:
import rightArrow from "../images/right-arrow.png";
EDIT: from the image it seems like it needs to go up 2 levels, so:
import rightArrow from "../../images/right-arrow.png";