set search params react router code example
Example 1: append a query string to the url react
history.push({
pathname: '/dresses',
search: '?color=blue'
})
Example 2: get query params react
new URLSearchParams(this.props.location.search).get("your_query_param_key")