1this.props.history.push({
2 pathname: '/client',
3 search: "?" + new URLSearchParams({clientId: clientId}).toString()
4})
1if (history.pushState) {
2 var newurl = window.location.protocol + "//" + window.location.host + window.location.pathname + '?myNewUrlQuery=1';
3 window.history.pushState({path:newurl},'',newurl);
4}