틀린점이 있다면 댓글로 알려주세요!
V6버전 이슈
최신버전 react-router-dom에서Attempted import error: 'Switch' is not exported from 'react-router-dom'.
이라는 에러가 발생했다.
최신버전인 V6에선 아래와 같이 Switch가 Routes로 대체되었고 exact 또한 사용할 필요가 없다고 한다
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
function App() {
return (
<div className="App">
<Router>
<GlobalStyles />
<Routes>
<Route path="/"></Route>
</Routes>
</Router>
</div>
);
}
그래서 5.2버전으로 다운그레이드하거나 Routes로 바꿔서 사용해야된다
참조
'에러 모음' 카테고리의 다른 글
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: (0) | 2022.08.18 |
---|---|
SSR 'window is undefined' 에러 해결법 (0) | 2022.06.25 |
Failed to load SWC binary 에러 처리 (0) | 2022.01.09 |
git pull 'fatal: 관계 없는 커밋 내역의 병합을 거부합니다' 에러 해결방법 (0) | 2022.01.06 |
jest-worker@27.0.0-next.5: The engine "node" is incompatible with this module. Expected version "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0". Got "14.8.0" (0) | 2022.01.02 |