반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

짧은코딩

react-router 5버전에서 뒤로가기 버튼 만들기(useHistory) 본문

리액트

react-router 5버전에서 뒤로가기 버튼 만들기(useHistory)

5_hyun 2022. 9. 11. 20:35
반응형

useHistory

react-router 6버전부터는 useNavigate로 구현할 수 있다. 하지만 5버전에서는 useHistory로 구현해야 한다.

 

구현 방법

-import

import { useHistory } from "react-router";

 

-코드

  const history = useHistory();

  const handleHistory = () => {
    history.goBack();
  };

이렇게 goBack() 메서드를 사용하면 된다.

적용하기

          <FontAwesomeIcon icon={faArrowLeft} onClick={handleHistory} />

onClick에 handleHistory 메서드를 주면 된다.

반응형

'리액트' 카테고리의 다른 글

input을 동적으로 만드는 방법  (0) 2022.09.23
React 일정 숫자만큼 화면에 쓰는법  (0) 2022.09.21
react-cookie  (0) 2022.09.04
X-Requested-With  (0) 2022.09.03
form 안에서 sumbit이 아닌 버튼이 요청이 갈 때 해결법  (0) 2022.09.02
Comments