React Component Catalog — Free Cursor Rules Template
    Neura MarketNeura Market/Cursor
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsGamesBlogVideosGuidesCoursesCommunityExtensionsTrending
    CursorRulesReact Component Catalog
    Back to Rules
    Frontend

    React Component Catalog

    April 15, 2026
    0 copies 0 downloads

    | Metric | Target | Warning | Critical |

    Rule Content
    You are an expert in React component architecture and maintainability.
    
    ## Component Size Limits
    
    | Metric | Target | Warning | Critical |
    |--------|--------|---------|----------|
    | Lines of code | < 150 | 150-300 | > 300 |
    | Imports | < 20 | 20-35 | > 35 |
    | useState calls | < 4 | 4-6 | > 6 |
    | useEffect calls | < 3 | 3-5 | > 5 |
    
    If exceeded: Stop and suggest decomposition.
    
    ## Hook Patterns
    
    ### AbortController for async useEffect
    ```typescript
    useEffect(() => {
        const controller = new AbortController();
        const fetchData = async () => {
            try {
                const result = await api.getData({ signal: controller.signal });
                setData(result);
            } catch (err) {
                if (!controller.signal.aborted) {
                    setError(err);
                }
            }
        };
        fetchData();
        return () => controller.abort();
    }, [dependency]);
    ```
    
    ### useWatch over watch()
    ```typescript
    // ✅ Good - reactive, no full re-render
    const value = useWatch({ name: 'field', control });
    
    // ❌ Bad - causes full form re-render
    const value = methods.watch();
    ```
    
    ### Memoize schemas
    ```typescript
    // ✅ Good
    const schema = useMemo(() => yup.object({
        field: yup.string().required()
    }), []);
    
    // ❌ Bad - recreated every render
    const schema = yup.object({ field: yup.string().required() });
    ```
    
    ### No components inside render
    ```typescript
    // ✅ Good - defined outside or memoized
    const InfoTrigger = memo(({ onClick }) => (
        <button onClick={onClick}>Info</button>
    ));
    
    // ❌ Bad - recreated every render
    const Component = () => {
        const Trigger = () => <button>Info</button>; // NEVER
        return <Trigger />;
    };
    ```
    
    ## File Structure
    ```
    ComponentName/
    ├── ComponentName.tsx         # Logic (< 100 lines)
    ├── ComponentName.styled.ts   # Styles only
    ├── ComponentName.types.ts    # Types/interfaces
    ├── ComponentName.test.tsx    # Tests
    └── hooks/
        └── useComponentData.ts   # Extracted logic
    ```

    Tags

    reacttypescriptcomponentshooksbest practicesreact-hook-formyup

    Comments

    More Rules

    View all

    Kechwafflesnew Cursor Rules

    C
    CODEFORYOU69

    AI DRAMA FACTORY Cursor Rules

    R
    Robert0157

    Site Cursor Rules

    R
    RaphaelVitoi

    KindnessBot Cursor Rules

    F
    foodyogi

    Neptunik Cursor Rules

    F
    fjpedrosa

    Cvcraft Cursor Rules

    C
    CedricCT

    Stay up to date

    Get the latest Cursor prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for Cursor and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Neura Market

    Custom AI Systems & Services

    Our team of experienced AI builders will help build custom AI systems, workflows, and solutions for your business.

    Request custom work

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this Cursor resource

    • Automate WhatsApp Product Catalog Management with PostgreSQLn8n · $14.99 · Related topic
    • Create a WhatsApp Sales Chatbot with Product Catalog Integrationn8n · $14.99 · Related topic
    • Automate Critical Security Incident Response with Google Sheets and Email Alertsn8n · $4.99 · Related topic
    • Automate Critical Error Alerts with Slack and Jira Integrationn8n · $4.99 · Related topic
    Browse all workflows