how to see previous location of history object react router code example
Example: react history listen get previous location
let prevLocation;
history.listen(nextLocation => {
console.log(prevLocation);
// ...
prevLocation = nextLocation;
});