mirror of
https://github.com/outline/outline.git
synced 2026-06-20 14:55:00 +03:00
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
// @flow
|
|
import { useLocation } from "react-router-dom";
|
|
|
|
export default function useQuery() {
|
|
return new URLSearchParams(useLocation().search);
|
|
}
|