Files
my-links/inertia/hooks/use_is_mobile.tsx
2024-10-07 01:33:59 +02:00

9 lines
203 B
TypeScript

const MOBILE_SCREEN_SIZE = 768;
export default function useIsMobile() {
return (
typeof window !== 'undefined' &&
window.matchMedia(`screen and (max-width: ${MOBILE_SCREEN_SIZE}px)`).matches
);
}