export function useIsMobile()

in src/hooks/useIsMobile.ts [4:8]


export function useIsMobile(): boolean {
  if (!useIsBrowser()) return false;
  const { width } = useSize(useRef(document.body));
  return width <= 1024;
}