react-code-implementer
Installation
SKILL.md
React Code Implementation
Component Implementation
Default Approach
- Start with Server Components by default
- Add 'use client' only when needed
- Use TypeScript for all components
- Define prop types with interfaces
- Export component as named export
Server Components
// components/UserProfile.tsx
interface UserProfileProps {
userId: string;
}