reactjs - Programmatically navigate using React router

PHOTO EMBED

Tue Oct 18 2022 06:20:01 GMT+0000 (Coordinated Universal Time)

Saved by @virtual_vicky #javascript

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

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

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

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