I can\'t seem to find how to update query params with react-router without using . hashHistory.push(url) doesn\'t seem to register que
hashHistory.push(url)
Within the push method of hashHistory, you can specify your query parameters. For instance,
push
hashHistory
history.push({ pathname: '/dresses', search: '?color=blue' })
or
history.push('/dresses?color=blue')
You can check out this repository for additional examples on using history
history