Importing React Component To Home Page
Answered
German yellowjacket posted this in #help-forum
German yellowjacketOP
For some reason my react component wont import to the home page any idea why? It says cannot find module
Answered by jason
I was looking at the wrong page.tsx, the path should be
'./components/Navbars'
7 Replies
If you chose the default import alias that was on the creation of your project you could do
import { HomeNavBar } from '@/app/components/Navbars'
// Or, with relative path
import { HomeNavBar } from './components/Navbars'
German yellowjacketOP
import { HomeNavBar } from '../components/Navbars.tsx'
it should be this but it still throws an error
this one imports just fine
I was looking at the wrong page.tsx, the path should be
'./components/Navbars'
Answer
German yellowjacketOP
thanks it worked (: