Memoization in React is a caching technique that stores the results of expensive function calls and returns the cached result when the same inputs occur again. React provides APIs like React.memo, useMemo, and useCallback to implement memoization, which helps prevent unnecessary re-renders and calculations, thereby improving application performance.