i have a hero component file in a component folder outside the src folder, then i have an admin folder inside the src folder where there is a file called AdminHome. Now i have been trying to import the the hero component into the AdminHome file so i can use it but it kept saying “Failed to resolve import “../components/Hero” from “src/page/admin/AdminHome.jsx”.”
so this was how i tried to import the hero component to the AdminHome file
import Hero from "../components/Hero"
so with this i was expecting that the page will render on the browser but it didn’t instead it was throwing an error saying “Failed to resolve import “../components/Hero” from “src/page/admin/AdminHome.jsx”. Does the file exist?”