import { useHistory } from "react-router-dom";

function HomeButton() {
  let history = useHistory();

  function handleClick() {
    history.push("/home");
  }

  return (
    <button type="button" onClick={handleClick}>
      Go home
    </button>
  );
}

 

'학습' 카테고리의 다른 글

Session  (0) 2021.10.23
express 미들웨어 CORS - configuration options  (0) 2021.10.21
LCM(최소공배수), GCD( 최대공약수)  (0) 2021.10.07
Redux 예제  (0) 2021.10.05
REST API  (0) 2021.09.04