{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "use-mobile",
  "files": [
    {
      "path": "src/registry/hooks/use-mobile.ts",
      "content": "import * as React from 'react';\n\nconst MOBILE_BREAKPOINT = 768;\nconst MOBILE_MEDIA_QUERY = `(max-width: ${MOBILE_BREAKPOINT - 1}px)`;\nconst getServerSnapshot = () => false;\n\nexport function useIsMobile() {\n  const subscribe = React.useCallback((onStoreChange: () => void) => {\n    const mql = window.matchMedia(MOBILE_MEDIA_QUERY);\n    mql.addEventListener('change', onStoreChange);\n\n    return () => mql.removeEventListener('change', onStoreChange);\n  }, []);\n\n  const getSnapshot = React.useCallback(\n    () => window.matchMedia(MOBILE_MEDIA_QUERY).matches,\n    []\n  );\n\n  return React.useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot);\n}\n",
      "type": "registry:hook"
    }
  ],
  "type": "registry:hook"
}