What problem does it solve? Writing modern React code requires keeping up with React 19 changes like ref-as-prop, the use() hook, Server Components, and Server Actions, and developers often fall back on deprecated patterns such as forwardRef or useFormState. ## Core Features & Use Cases - React 19 Patterns: Enforces ref-as-prop, use(), useActionState, useFormStatus, useOptimistic, and async transitions instead of deprecated APIs. - Server/Client Architecture: Provides decision rules for Server Components vs Client Components, Server Actions with validation, and progressive enhancement. - State & Performance Guidance: Covers hooks mastery, Zustand and Context patterns, virtualization, code splitting, and React Compiler implications. - Use Case: When building a Next.js App Router page with a form, use this Skill to generate a Server Component that fetches data, a Server Action with Zod validation, and a client form using useActionState with optimistic updates. ## Quick Start Use the neuro-react skill to build a signup form with a Server Action, Zod validation, and useActionState for pending and error states.