[React] history.goback() 대체
2022. 10. 17. 20:12
프로그래밍/React
history.goback() 대체 React Router v6로 업그레이드 되면서 history.goback()이 작동하지 않는 경우 👉 useNavigate 사용 useNavigate 예시 import { useNavigate } from 'react-router-dom'; function YourApp() { const navigate = useNavigate(); return ( navigate(-1)}>go back ); } 코드 개선 예제 기존 코드 const onCancel = () => { history.goback() } 변경 코드 const navigate = useNavigate(); const onCancel = () => { navigate(-1); }