[READ-ONLY] a fast, modern browser for the npm registry
at main 9 lines 270 B view raw
1/** 2 * Composable for detecting mobile devices using media query. 3 * Uses the same breakpoint as Tailwind's `md:` (768px). 4 * 5 * Returns `false` during SSR to avoid hydration mismatches. 6 */ 7export function useIsMobile() { 8 return useMediaQuery('(max-width: 767px)') 9}