export const getURLQuery = (query: string): string | null => {
  const params: any = new Proxy(new URLSearchParams(window.location.search), {
    get: (searchParams, prop) => searchParams.get(prop as string),
  });

  return params[query];
};
