Answer the question
In order to leave comments, you need to log in
How to pass state through the Link component?
How to pass data through the react-router Link component to the component that is rendered along the path of this link?
Tried like this. Navigating the path /weather/detailed_weather renders the DetailedWeather component. You need to transfer data to it via Link.
<Link to={{
pathname: '/weather/detailed_weather',
state: {weather: true},
}}>Link</Link>
Answer the question
In order to leave comments, you need to log in
this.props.history.push({
state: { detail: response.data }
})
The Link component does not know which component will be rendered. Route knows which component is drawn along the path. Looking for a more logical way to pass props
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question