mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
5 lines
149 B
TypeScript
5 lines
149 B
TypeScript
import { useLocation } from "react-router-dom";
|
|
|
|
export function useQuery(): URLSearchParams {
|
|
return new URLSearchParams(useLocation().search);
|
|
}
|