mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
9 lines
209 B
TypeScript
9 lines
209 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
|
|
);
|
|
}
|