Can anyone please tell me how I can go back to the previous page rather than a specific route?
When using this code:
var BackButton = React.createCla
The only solution that worked for me was the most simple. No additional imports needed.
this.props.history.goBack()}>Back
Tks, IamMHussain