Skip to main content
✏️ Code CompletionRX React Medium+20 XP

useCallback Hook

Complete to memoize the handler.

✏️ Fill in the blank
const handleClick = ___(()=> {
  doSomething();
}, []);

✏️ Type the missing code: