What's wrong with this entry?
Anonymous. No account, no email.
What
The entire UI layer has been updated to use React Compiler's automatic memoization through useMemoCache.
Details
- In v2.1.14: Only 1 reference to
react.memo_cache_sentinel(the definition in React internals) - In v2.1.15: 736 usages across UI components
- A new shared
e()function wrapsuseMemoCachefor use across all components - This provides automatic fine-grained memoization without manual
useMemo/useCallbackcalls - Should improve rendering performance by avoiding unnecessary re-renders
Evidence
e = function(A) { return dn5.H.useMemoCache(A) } at line 92039, 736 occurrences of Symbol.for("react.memo_cache_sentinel") checks throughout UI code
Strings lifted out of the shipped bundle, so the claim above can be checked against them.