Не могу найти способ передачи {...this.props}
Вот App.js
import { UserHome } from './UserHome';
import { NewPatient } from './NewPatient';
...
<Router history={hashHistory}>
<Route path="/" component={UserHome}></Route>
<Route path="NewPatient" component={NewPatient} ></Route>
</Router>
и есть UserHome.js
constructor(...args) {
super(...args);
this.state = {
patient_ur:''
};
changeNewPatient(){
this.props.history.push("NewPatient");
}
<Button onClick={()=>{
this.setState({patient_ur: this.searchPatient()});
this.changeNewPatient();
}} ....
Как передать patient_ur из UserHome в NewPatient ?