()
| 51 | }; |
| 52 | |
| 53 | const App = () => ( |
| 54 | <AaaProvider> |
| 55 | <BbbProvider> |
| 56 | <Aaa /> |
| 57 | <Bbb /> |
| 58 | </BbbProvider> |
| 59 | </AaaProvider> |
| 60 | ); |
| 61 | |
| 62 | const Aaa = () => { |
| 63 | const { aaa, setAaa } = useContext(aaaContext); |
nothing calls this directly
no outgoing calls
no test coverage detected