()
| 3 | const countContext = createContext(111); |
| 4 | |
| 5 | function Aaa() { |
| 6 | return <div> |
| 7 | <countContext.Provider value={222}> |
| 8 | <Bbb></Bbb> |
| 9 | </countContext.Provider> |
| 10 | </div> |
| 11 | } |
| 12 | |
| 13 | function Bbb() { |
| 14 | return <div><Ccc></Ccc></div> |
nothing calls this directly
no outgoing calls
no test coverage detected