{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "useLatest", "title": "useLatest", "description": "useLatest hook", "files": [ { "path": "packages/hooks/src/useLatest/index.ts", "content": "import { useRef } from 'react';\n\nfunction useLatest(value: T) {\n const ref = useRef(value);\n ref.current = value;\n\n return ref;\n}\n\nexport default useLatest;\n", "type": "registry:file", "target": "src/hooks/ahooks/useLatest/index.ts" } ], "type": "registry:hook" }