I have a little problem with Axios and I don't know how to redirect after a signup or a login.
Here is my code:
axios.post("/api/user/signup", { data })
.then(res => {
if (res.status === 200) {
console.log("REDIRECTION avec status => ", res.status);
// how to redirect here
<Redirect to = {{ pathname: "/home" }} />
}
The flow reaches the console.log call but I can't find how to redirect after it in React.