how to pass data using history push code example
Example 1: passing data in react router history,push
this.props.location.state.detail
Example 2: this.props.history.location.push
props.history.push({ pathname: '/register', state: data_you_need_to_pass});