history:push()로 페이지 이동 설정
1. <button> 요소 사용
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>
);
}2. <a> 요소 사용
Last updated