Spaces:
Sleeping
Sleeping
File size: 145 Bytes
05c5ed5 | 1 2 3 4 5 6 7 8 | import { useRef } from "react";
export const useToRef = <T>(value: T) => {
const ref = useRef(value);
ref.current = value;
return ref;
};
|