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';
Installs
GitHub Stars
1
First Seen
React Components — mark393295827/house-maint-ai