react router get query param code example
Example 1: get query params react
new URLSearchParams(this.props.location.search).get("your_query_param_key")
Example 2: maintain query params react-router
history.push('/app/measurements' + history.location.search)