mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
|
import { useLocation } from 'react-router';
|
||
|
|
||
|
const useQueryParams = () => {
|
||
|
return new URLSearchParams(useLocation().search);
|
||
|
};
|
||
|
|
||
|
export default useQueryParams;
|