MCPcopy
hub / github.com/Aider-AI/aider / UserProps

Interface UserProps

tests/fixtures/languages/tsx/test.tsx:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import React, { useState, useEffect } from 'react';
2
3interface UserProps {
4 name: string;
5 age?: number;
6}
7
8// Component with props interface
9const UserGreeting: React.FC<UserProps> = ({ name, age }) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected