import { useRef } from "react"; export const useStable = >(value: T) => { const ref = useRef(value); Object.assign(ref.current, value); return ref.current; };