I am setting up a signup page in react js using the class component. I want to redirect to the home page after login. Since the react-router-dom has upgraded to v6.0 the {withRouter} functionality is no more available. Any idea how can I do this?
Thanks for the help!!!
you can use 'react-router-dom'
import { Navigate } from "react-router-dom";
...
myFunction() {
this.props.history.push("/home");
}
...
}