useQueryParams

useQueryParam Example

const [foo, setFoo] = useQueryParam('foo', StringParam)
The value of foo is undefined
const [arr, setArr] = useQueryParam('arr', NumericArrayParam)
The value of arr is undefined

Since we specify the update type as push, the back button will work. If we used pushIn, the value of foo would be retained.