Use Mobile
edgecom/use-mobileFreeHook
The Edgecom Use Mobile hook.
Install it
npx shadcn@latest add https://design.edgecom.ai/r/use-mobile.jsonSource
1import * as React from "react"23const MOBILE_BREAKPOINT = 76845function subscribe(onChange: () => void) {6 const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`)7 mql.addEventListener("change", onChange)8 return () => mql.removeEventListener("change", onChange)9}1011export function useIsMobile() {12 return React.useSyncExternalStore(13 subscribe,14 () => window.innerWidth < MOBILE_BREAKPOINT,15 () => false,16 )17}
