history.goBack code example
Example 1: useHistory goback
import {useHistory} from "react-router-dom";
const history = useHistory();
<button onClick={() => history.goBack()}>Go Back</button>
Example 2: react router go rprevious page
directly use (()=>this.props.history.goBack())
Example 3: js go back
history.back()
Example 4: how to go back in usinsg router hisotry
this.props.history.goBack(); //react-router (v4)