Вы можете сделать это следующим образом:
.then(function (res) {
console.log(res);
props.history.push('/home');
})
.catch(function (err) {
console.log(err);
props.history.push('/');
});
Использовать withRouter из response-router-dom
import { withRouter } from 'react-router-dom';
обернуть ваш компонент с помощью withRouter
export default withRouter(LoginApp);