how to delay the redirect react code example
Example 1: how to delay redirect in javascript
// redirect to google after 5 seconds
window.setTimeout(function() {
window.location.href = 'http://www.google.com';
}, 5000);
Example 2: how to use redirect in react
import { useHistory } from "react-router-dom";
function App() {
let history = useHistory();
}