2025-04-01 10:38:02 +09:00

8 lines
144 B
TypeScript

import { useWindowSize } from 'react-use';
export const useIsDesktop = () => {
const { width } = useWindowSize();
return width > 1024;
};