Запитання 6
What is the main difference between useMemo and useCallback hooks in React Native?
Варіанти відповідей
useMemo caches a computed value; useCallback caches a function reference
useMemo caches a function reference; useCallback caches a computed value
useMemo and useCallback both cache component state
They have the same purpose and are interchangeable