React Compiler Stable Release
React Compiler is now stable! Automatic memoization without useMemo/useCallback:
// Before: Manual optimization
const value = useMemo(() => expensive(a, b), [a, b]);
// After: Just write normal code
const value = expensive(a, b);
// Compiler handles memoization automatically!