I have a signup form and after a user signs up, it will redirect to the email confirmation page(/confirmation) where a user types a confirmation code that I sent via an email. W
What i have done to pass data without context object is by using history prop,
this.props.history.push({ pathname:"/shopdetail", state:{ key:"value" } });
And in the ShopDetail component you can access the object like,
this.props.location.state.key