React Compiler
手動メモ化(useMemo/useCallback)の終わり。Reactが自動で最適化します。
Compiler Demo
// React 19 Compiler (Automatic Memoization)function Header({ title }) { // No need for useMemo() manually anymore! // The compiler detects this is static text. return <h1>{title}</h1>;}