4IT580: Docs
4IT580 WebGithub

7th Practical Class:
More Hooks, forwardRef, memo

Some More Hooks

useMemo, useCallback

Whithout Memoization:

function SomeComponent({ a, b, onSubmit }) {
const sum = a + b;
const submitCallback = () => onSubmit(a, b);
return (
<button type="button" onClick={submitCallback}>
{sum}
</button>
);
}

With Memoization:

function SomeComponent({ a, b, onSubmit }) {
const sum = useMemo(() => {
return a + b;
}, [a, b]);
const memoizeMe = () => onSubmit(a, b);
const submitCallback = useCallback(memoizeMe, [a, b]);
return (
<button type="button" onClick={submitCallback}>
{sum}
</button>
);
}

React.memo

0
Rerender ๐Ÿ›‘
NoRerender ๐Ÿ›‘
Rerender
NoRerender

Custom Hooks

useRef

React.forwardRef

Focus does not work in this example. For fix see example below.

Enable ref for custom component: