batman

Results 1 comments of batman

Try this import { useRef, useState, useEffect } from "react"; const UNINITIALIZED = Symbol("UNINITIALIZED"); export const useOnce = (initialValue: T | (() => T)) => { const ref = useRef...