How to I get access to the history function when passing custom props to component.
JavaScript
x
2
1
<Route path="/" exact component={<Home prop1={this.state.example}/>}/>
2
If I try getting the history object in Home component, I can’t get to use the history functions. I logged the history object in the console and I can see there’s not push
or replace
functions anymore.
Where as, using this
JavaScript
1
2
1
<Route path="/" exact component={Home}/>
2
works perfecting except then I can’t pass my custom props.
Advertisement
Answer
You just need to use the Spread operators and pass your custom props alongside.
JavaScript
1
2
1
<Route exact path="/" component={props => <Home props={{ data: "check", props }}/>}/>
2
If you console the props inside Home component, you can see the value of data in props.data