D
Size: a a a
D
АБ
D
D
АБ
D
АБ

АБ
АБ
АБ
D
АБ
NT
const example = useCallback(() => {
....
}, [a, b, c])
useEffect(() => {
example(a, b, c)
}, [b, c])
useEffect(() => {
const id = setTimeout(() => example(a, b, c), 0);
return () => clearTimeout(id);
}, [a])NT
D
S