IT/React

[React] useHistory 정리

시린스 2023. 7. 6. 12:51
반응형

※ useHistory
- push : location.href 처럼 페이지를 이동 할 수 있다.
          EX) history.push('/Departure'); 
- goBack : 뒤로가기를 할 수 있다. 
          EX) history.goBack();