유쾌하지 못한 오류 기록

React 오류 기록 Uncaught TypeError: Cannot read properties of undefined (reading 'pathname')

튼튼한간 2023. 1. 3. 01:20

React 오류 기록 

Uncaught TypeError: Cannot read properties of undefined (reading 'pathname')

 

🤯 문제

 

path 이름이 정의가 되지 않았다고 하는데, 그걸 어디서 정의하지?

 

직독직해 하는 기분....

 

<Router>
        <Routes>
          <Route path="/" element={<HomeContainer/>} />
          <Route path="/local" element={<LocalContainer />} />
          <Route path="/national" element={<NationalContainer />} />
          <Route path="/beginner" element={<BeginnerContainer />} />
          <Route path="/height" element={<HeightContainer />} />
        </Routes>
      </Router>

 

 

 

🥳 문제 해결

import { BrowserRouter, Route, Routes } from "react-router-dom";
<BrowserRouter>
        <Routes>
          <Route path="/" element={<HomeContainer />} />
          <Route path="/local" element={<LocalContainer />} />
          <Route path="/national" element={<NationalContainer />} />
          <Route path="/beginner" element={<BeginnerContainer />} />
          <Route path="/height" element={<HeightContainer />} />
        </Routes>
      </BrowserRouter>

ㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ

 

BrowserRouter안에 넣으니까 pathname도 찾나보다..

드디어 화면에 뜬다!!!🤸🏻‍♀️🤸🏻‍♀️