react router get :id url code example
Example 1: get data from url using react
this.props.match.params.id
Example 2: get data from url using react
<Route path="/users/:id" component={UserPage}/>
this.props.match.params.id
<Route path="/users/:id" component={UserPage}/>