0
3
JRJose Romero
nextcallbackuseCallbackβ’β’β’
Next TypeScript recipesReturns a memoized callback.
Pass an inline callback and an array of dependencies. useCallback will return a memoized version of the callback that only changes if one of the dependencies has changed. This is useful when passing callbacks to optimized child components that rely on reference equality to prevent unnecessary renders (e.g. shouldComponentUpdate).
Library: next
Shortcut: next.hook.callback.use
import { useCallback } from "react";
const memoizedCallback = useCallback(() => {
doSomething(dependencies);
},
[dependencies],
);