<Redirect
to={{
pathname: '/login',
state: { referrer: props.history.location.pathname }, // или `/products/${slug}`
}}
/>
class Login extends React.Component {
onLoginSuccess() {
const { history } = this.props;
const { state } = history.location;
const location = (state && state.referrer) || '/';
history.push(location);
}
/* ... *.
}