React 오류 기록 Uncaught Error: useRoutes() may be used only in the context of a <Router> component.
🤯 문제
해석을 해 보자면, useRouter()는 <Router>로 감싸야 한다,, 라는데
<Routes>
<Route path="/" element={<div>Home</div>} />
<Route path="/local" element={<div>Local</div>} />
<Route path="/national" element={<div>National</div>} />
<Route path="/beginner" element={<div>Beginner</div>} />
<Route path="/height" element={<div>Height</div>} />
</Routes>
이게 감싼게 아닌가보다..
🥳 해결 방법
import { BrowserRouter as Route, Router, Routes } from "react-router-dom";
<Router>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/local" element={<Local />} />
<Route path="/national" element={<National />} />
<Route path="/beginner" element={<Beginner />} />
<Route path="/height" element={<Height />} />
</Routes>
</Router>
<Router>로 감싸고, element 옆에 경로 제대로 설정
거짓말,, 또 다른 오류에 봉착!🤯🤯🤯
유쾌하지못한 오류 시리즈는 계속 된다😥😥😥😥😥😥
'유쾌하지 못한 오류 기록' 카테고리의 다른 글
Git 오류 기록 git switch가 되지 않을 때 (0) | 2023.01.06 |
---|---|
React 오류 기록 Uncaught TypeError: Cannot read properties of undefined (reading 'pathname') (0) | 2023.01.03 |
Git 오류 기록 cannot lock ref 'refs/remotes/origin' (0) | 2023.01.03 |
React 오류 기록 npm start와 yatn start가 안될 때 (0) | 2023.01.02 |
React 오류 기록 Module not found: Error: Can't resolve (0) | 2022.12.30 |