1import { useIsMounted, useWindowSize } from "usehooks-ts"; 2 3export const useIsMobile = () => { 4 const { width = 0 } = useWindowSize(); 5 const isMounted = useIsMounted(); 6 const isMobile = isMounted() ? width < 1024 : false; 7 return isMobile; 8};