Next.js Discord

Discord Forum

Importing React Component To Home Page

Answered
German yellowjacket posted this in #help-forum
Open in Discord
Avatar
German yellowjacketOP
For some reason my react component wont import to the home page any idea why? It says cannot find module
Image
Answered by jason
I was looking at the wrong page.tsx, the path should be './components/Navbars'
View full answer

7 Replies

Avatar
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'
Avatar
German yellowjacketOP
import { HomeNavBar } from '../components/Navbars.tsx'
it should be this but it still throws an error
Image
this one imports just fine
Image
Avatar
I was looking at the wrong page.tsx, the path should be './components/Navbars'
Answer
Avatar
German yellowjacketOP
thanks it worked (: