fetching url parameters react code example
Example 1: get query params react
new URLSearchParams(this.props.location.search).get("your_query_param_key")
Example 2: react get route params
const Child = ({ match }) => (
<div>
<h3>ID: {match.params.id}</h3>
</div>
)
Example 3: get data from url using react
this.props.match.params.id