"use client" import { useRef } from "react" export function useLiveRef(value: T) { const ref = useRef(value) ref.current = value return ref }