[React] export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom' 해결


[React] export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom' 해결

문제상황: Nomad Coders의 트위터 클론코딩 강의의 #2.6 Log Out (06:37) 를 듣던 중 Profile.js에서 export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom'에러 로그 발생 · Profile.js import React from "react"; import { authService } from "fbase"; import { useHistory } from "react-router-dom"; export default () => { const history = useHistory(); const onLogOutClick = () => { authService.signOut(); his..


원문링크 : [React] export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom' 해결