export function useIs1440Size()

in src/hooks/useIsMobile.ts [10:14]


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