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