Skip to content

Instantly share code, notes, and snippets.

@nodahikaru
Last active February 21, 2021 01:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nodahikaru/b61f78933d675517661d9dec251be4f5 to your computer and use it in GitHub Desktop.
Save nodahikaru/b61f78933d675517661d9dec251be4f5 to your computer and use it in GitHub Desktop.
import { useLocation } from "react-router-dom";
export function useQueryParams() {
const query = new URLSearchParams(useLocation().search);
return query;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment