📄️ Batching
Batching is when React groups multiple state updates into a single re-render for better performance.
📄️ Memoization Hooks (useCallback, useMemo)
메모이제이션(Memoization)은 프로그램이 동일한 계산을 반복할 때, 이전에 계산한 값을 메모리에 저장함으로써 중복되는 연산을 제거해서 프로그램 실행 속도를 빠르게하는 기술이다.