I have a situation where my routes are of the form '?search=foo&ingrids=bla', and I want to find a solution to automatically convert them to '/foo/bla/' form. I currently use React's useSearchParams to set my params. Is there a solution to only "translate" the searchParams into the form above with some sort of a syntax table?
Thanks!