Am new to react/redux.I have a Redux action for authentication, and after that I need to redirect to a confirmation page home. I don't know how to redirect
this is my index.js
import React, { PropTypes } from 'react';
import { connect } from 'react-redux';
import { FormattedMessage } from 'react-intl';
import { createStructuredSelector } from 'reselect';
import {loginAction} from './actions';
export class Login extends React.PureComponent { // eslint-disable-line react/prefer-stateless-function
constructor(props) {
super(props);
this.state = {
  username: '',
  password: ''
};
// this.handleChange = this.handleChangeUsername.bind(this);
// this.handleSubmit = this.handleChangePassword.bind(this);
}
handleChangeUsername(event) {
 console.log(event.target.value);
 this.setState({username: event.target.value});
 console.log(this.state.username)
}
handleChangePassword(event) {
 this.setState({password: event.target.value});
 console.log(this.state.password)
}
 handleSubmit(event) {
this.props.dispatch(loginAction(this.state));
event.preventDefault();
}
render() {
return (
  <div>
  <div className="loginColumns animated fadeInDown">
    <div className="row">
        <div className="col-md-6">
        </div>
        <div className="col-md-6">
            <div className="ibox-content">
                <form className="m-t" role="form" onSubmit={this.handleSubmit.bind(this)}>
                    <div className="form-group">
                        <input type="email" value={this.state.username} onChange={this.handleChangeUsername.bind(this)} className="form-control" placeholder="Username" required="" />
                    </div>
                    <div className="form-group">
                        <input type="password" value={this.state.password} onChange={this.handleChangePassword.bind(this)} className="form-control" placeholder="Password" required="" />
                    </div>
                    <button type="submit" className="btn btn-primary block full-width m-b">Login</button>
                    <a href="#">
                        <small>Forgot password?</small>
                    </a>
                </form>
            </div>
        </div>
    </div>
    <hr/>
    <div className="row">
        <div className="col-md-6">
            Copyright Example Company
        </div>
        <div className="col-md-6 text-right">
           <small>© 2014-2015</small>
        </div>
    </div>
</div>
  </div>
);
}
}
Login.propTypes = {
 dispatch: PropTypes.func.isRequired,
};
const mapStateToProps = createStructuredSelector({
 // Login: makeSelectLogin(),
});
function mapDispatchToProps(dispatch) {
 return {
 dispatch,
 };
}
 export default connect(mapStateToProps, mapDispatchToProps)(Login);
action.js
import {
  DEFAULT_ACTION,
  LOGIN_ACTION
} from './constants';
export function defaultAction() {
 return {
   type: DEFAULT_ACTION,
  };
}
export function loginAction(json) {
  return {
    type: LOGIN_ACTION,
    json
  };
}
reducer.js
import { fromJS } from 'immutable';
import {
  DEFAULT_ACTION,
  LOGIN_ACTION
} from './constants';
const initialState = fromJS({
    status: false
});
function loginReducer(state = initialState, action) {
    console.log("action", action)
  switch (action.type) {
    case DEFAULT_ACTION:
      return state;
    case LOGIN_ACTION: 
        return _testFunction(state,action.json);
        default:
      return state;
  }
}
function _testFunction(state, json) {
    if(json.username == "abcd@gmail.com" && json.password == "1234")
    return state.set("status", true)
}
export default loginReducer;
i want to redirect /home after successful login. how can i redirect?
 
    