()
| 592 | }; |
| 593 | |
| 594 | const EvenLower = () => { |
| 595 | const readContext = React.useContext(TestContext); |
| 596 | |
| 597 | console.log("being rendered lower"); |
| 598 | console.log(readContext); |
| 599 | |
| 600 | return React.createElement("span", { |
| 601 | innerText: "test lower" + readContext.hello, |
| 602 | }); |
| 603 | }; |
| 604 | |
| 605 | const ParentContextTest = () => { |
| 606 | return React.createElement( |
nothing calls this directly
no outgoing calls
no test coverage detected