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