[Troubleshooting] React location 오류
TypeError: Cannot read property ‘location’ of undefined 해결하기
위의 그림과 같이 에러가 발생하는 경우
위의 그림과 같이
import { Router } from "react-router-dom";
Router가 아닌
import { Route } from "react-router-dom";
Route이라고 적어주면 문제가 해결된다.
