React Components
Installation
SKILL.md
React Components Skill
This skill provides patterns, templates, and best practices for creating React components in the house-maint-ai project.
Component Structure
All components should follow this structure:
src/components/
├── ComponentName.jsx # Component implementation
├── ComponentName.test.jsx # Component tests
└── index.js # Optional barrel export
Component Template
import { useState } from 'react';