TIL * 22.03.30
📛 ERROR
Warning: Failed prop type: The prop `history` is marked as required in `Router`, but its value is `undefined`.
Uncaught TypeError: Cannot read properties of undefined (reading 'location')
The above error occurred in the <Router> component:
Uncaught TypeError: Cannot read properties of undefined (reading 'location')
react-router-dom을 5.3.0 버전으로 설치하고 처음 사용하려고 하자마자 발생한 오류이다.
import React from 'react';
import Home from './routes/Home';
import { BrowserRouter, Switch, Route, Router, } from 'react-router-dom';
const App = () => {
return (
<Router>
<Switch>
<Route path="/">
<Home />
</Route>
</Switch>
</Router>
);
}
export default App;
보다시피 코드에서는 history
, location
을 사용하지 않았음에도 불구하고 발생하였다.
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import를 위와 같이 해 주면 해결이 된다!
v6을 사용할 때는 본 적이 없었던 듯한 오류라 당황스러웠다.
Author And Source
이 문제에 관하여(TIL * 22.03.30), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@abcriho/TIL-22.03.30저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)