React Suspense Full Reference : See advanced.md for Streaming SSR, SuspenseList, Custom Suspense-Enabled Hooks, Image Loading, Route-Based Code Splitting, and Testing patterns. When NOT to Use This Skill - Using React 17 or earlier (limited support) - Working with class components - Building non-React applications - All data is static (no async operations) Core Concept Suspense lets you declaratively specify loading states while waiting for async operations: --- Code Splitting with React.lazy Preloading Components --- Data Fetching with Suspense Using TanStack Query Using React 19 use() Hook…