()
| 375 | }; |
| 376 | |
| 377 | export const MegaChild = () => { |
| 378 | console.log("megachild re-render"); |
| 379 | return React.createElement("div", { |
| 380 | innerText: "ima mega child", |
| 381 | }); |
| 382 | }; |
| 383 | |
| 384 | const ConditionalTest = () => { |
| 385 | const [cond, setCond] = React.useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected