i have 2 main components
SurveyList, used to display all survey data
Survey, used to update survey data
when i click edit button in survey list, it shows selected survey id on url, but not able to pass to Survey Component
Like this
this is my Route for SurveyComponent
<Route path="/survey/:id" component={Survey} />
And here is Link to
<Link to={`/survey/${currentsurvey.id}`/>
I also tried different methods fot this, but none of them are working.