redirect page with hash router react code example
Example 1: redirect react router
<Route exact path="/">
{loggedIn ? <Redirect to="/profile" /> : <HomePage />}
</Route>
Example 2: how to use redirect in react
import { useHistory } from "react-router-dom";
function App() {
let history = useHistory();
}