what are other methods of redirect other than usehistory code example
Example 1: redirect to in react js
<Route exact path="/">
{loggedIn ? <Redirect to="/dashboard" /> : <PublicHomePage />}
</Route>
Example 2: how to use redirect in react
import { useHistory } from "react-router-dom";
function App() {
let history = useHistory();
}