import { useNavigate } from 'react-router-dom'; // v6
const navigate = useNavigate();
...
navigate(-1); // Go back 1 page in history
navigate(-2); // Go back 2 pages in history
navigate(1); // Go 1 page forward in history
navigate(2); // Go 2 pages forward in history