this.props.history.push code example
Example 1: this.props.history.location.push
props.history.push({ pathname: '/register', state: data_you_need_to_pass});
Example 2: this.props.history.location.push
<Link to={{ pathname: "/register", state: data_you_need_to_pass }}> Register</Link>
Example 3: props history
class Comp extends React.Component {
componentDidUpdate(prevProps) {
const locationChanged =
this.props.location !== prevProps.location;
const locationChanged =
this.props.history.location !== prevProps.history.location;
}
}
<Route component={Comp} />;
Example 4: props history
{
key: 'ac3df4',
pathname: '/somewhere',
search: '?some=search-string',
hash: '#howdy',
state: {
[userDefined]: true
}
}