React History Escuchar Obtener una ubicación anterior
let prevLocation;
history.listen(nextLocation => {
console.log(prevLocation);
// ...
prevLocation = nextLocation;
});
Long Lyrebird