Skip to content

Instantly share code, notes, and snippets.

@noramens
Created February 2, 2022 00:33
Show Gist options
  • Save noramens/8dd5457a5f518552e8153a69ea81b028 to your computer and use it in GitHub Desktop.
Save noramens/8dd5457a5f518552e8153a69ea81b028 to your computer and use it in GitHub Desktop.
useNavigate from react-router-dom
import {useNavigate} from 'react-router-dom';
function Redirect() {
let navigate = useNavigate();
function handleClick() {
navigate('/about')
}
return (
<div>
<button onClick={handleClick}> go to the about page </button>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment