()
| 40 | ); |
| 41 | |
| 42 | const WrappedAaa = () => { |
| 43 | const { aaa, setAaa } = useContext(context); |
| 44 | |
| 45 | return <Aaa aaa={aaa} setAaa={setAaa}/> |
| 46 | }; |
| 47 | |
| 48 | interface AaaProps { |
| 49 | aaa: number; |
nothing calls this directly
no outgoing calls
no test coverage detected