mirror of https://github.com/usememos/memos
chore: add `react-router`
parent
8d694f7732
commit
660908e436
@ -0,0 +1,13 @@
|
|||||||
|
// A custom hook that builds on useLocation to parse
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
import { useLocation } from "react-router-dom";
|
||||||
|
|
||||||
|
// the query string for you.
|
||||||
|
const useQuery = () => {
|
||||||
|
const { search } = useLocation();
|
||||||
|
|
||||||
|
return React.useMemo(() => new URLSearchParams(search), [search]);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default useQuery;
|
Loading…
Reference in New Issue