fix(curriculum): updated transcript in memoization (#61019)

This commit is contained in:
Abubakr Rizan
2025-06-24 13:04:17 +05:30
committed by GitHub
parent 52361d1306
commit efbdec0fe2

View File

@@ -36,7 +36,7 @@ The memoization process happens this way:
To improve developer experience with memoization, React provides three tools `React.memo` (or `memo`), `useMemo` and `useCallback`. 
As you might guess, both `useMemo` and `useCallback` are hooks, but `React.memo` is a component wrapper, a higher-order function (HOC).
As you might guess, both `useMemo` and `useCallback` are hooks, but `React.memo` is a component wrapper, a higher-order component (HOC).
In the next lecture, we will take a look at how the `useCallback` hook and `React.memo` work.