Next.js Discord

Discord Forum

Importing React Component To Home Page

Answered
German yellowjacket posted this in #help-forum
Open in Discord
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'
View full answer

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'
this one imports just fine
I was looking at the wrong page.tsx, the path should be './components/Navbars'
Answer
@jason I was looking at the wrong page.tsx, the path should be `'./components/Navbars'`
German yellowjacketOP
thanks it worked (: