react js get query params react router dom code example
Example 1: use query params react
const query = new URLSearchParams(this.props.location.search);
const token = query.get('token')
console.log(token)//123
Example 2: maintain query params react-router
history.push('/app/measurements' + history.location.search)