ChatGPT-Next-Web/app/hooks/useMobileScreen.ts

13 lines
272 B
TypeScript

import { useLayoutEffect } from "react";
import { useWindowSize } from "../utils";
export const MOBILE_MAX_WIDTH = 600;
export default function useMobileScreen() {
const { width } = useWindowSize();
const isMobile = width <= MOBILE_MAX_WIDTH;
return isMobile;
}