({user})
| 103 | // const {name} = props; |
| 104 | |
| 105 | function Main({user}){ |
| 106 | |
| 107 | return ( |
| 108 | <> |
| 109 | <h2>Hi {user.name}</h2> |
| 110 | <h3>{user.age>18? "Ypur are eligible for vote": "Your are not eligible for vote"}</h3> |
| 111 | <p>Your city is {user.city}</p> |
| 112 | </> |
| 113 | |
| 114 | ) |
| 115 | } |
| 116 | |
| 117 | function Footer(){ |
| 118 |
nothing calls this directly
no outgoing calls
no test coverage detected