I need to pass certain parameters from one component to another component using react router in react
clicked =()=>{
//alert('clicked');
this.props.history.push('/roles')// we need to pass paramters through this
}
We need to retrieve the paramters passed from this in the component where the roles is pointing to ?