What problem does it solve? React 19 and Tailwind CSS v4 introduced breaking changes that invalidate older code patterns, causing developers to write deprecated code like forwardRef wrappers, tailwind.config.ts files, and removed utility classes without realizing it. ## Core Features & Use Cases - React 19+ API Reference: Covers new hooks (useActionState, useFormStatus, useOptimistic, use), Server Components, Server Actions, and breaking changes like ref-as-prop and Context-as-provider. - Tailwind v4+ Configuration Guide: Documents CSS-native @theme configuration, renamed utilities, dark mode setup, custom utilities, and v3-to-v4 migration paths. - Architecture Patterns: Provides component structure conventions, service classes, abstract base classes, and strategy patterns for typed, modular React code. - Use Case: When migrating a React 18 app with Tailwind v3, use this Skill to replace forwardRef with ref props, convert tailwind.config.ts to @theme directives, and update renamed utilities like shadow-sm to shadow-xs. ## Quick Start Use the react-development skill to refactor my component to React 19 patterns and update my Tailwind config to v4 CSS-native syntax.