I have App.js with route
<Route path="/home" component={() => <Home changeAuth={this.changeAuth} auth={auth} />}/>
But when i use component to display modal with:
<Link to="/home/info"> <span class="logout">App Info</span></Link>
<Route path="/home/info" component={Info} />
Component was re-render and run componentDidMount.
It's not when i use <Route component ={Home}/>
but i want using props.