Answers for "17 | super(props); 18 | 19 | this.state = { > 20 | location: props.history.location | ^ 21 | }; 22 | 23 | // This is a bit of a hack. We have to start listening for location"

6

react router dom push

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>
  );
}
Posted by: Guest on May-11-2020

Code answers related to "17 | super(props); 18 | 19 | this.state = { > 20 | location: props.history.location | ^ 21 | }; 22 | 23 | // This is a bit of a hack. We have to start listening for location"

Code answers related to "Javascript"

Browse Popular Code Answers by Language