반응형 useNavigate1 export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom' react-router-dom v6에서 오류가 발생했다. // 소스 코드 import { useHistory } from "react-router-dom"; // 오류 발생 export 'useHistory' (imported as 'useHistory') was not found in 'react-router-dom' // react-router-dom v5 import { useHistory } from "react-router-dom" const Profile = () => { const history = useHistory(); const onLogOutClick = () => { history.push("/"); } }; useHistory -> Navigate로 변경 // react-route.. 2022. 1. 24. 이전 1 다음 반응형