export function useIs768Size()

in src/hooks/useIsMobile.ts [16:20]


export function useIs768Size() {
  if (!useIsBrowser()) return false;
  const { width } = useSize(useRef(document.body));
  return width <= 768;
}