()
| 538 | const Loading = () => <div>Loading...</div>; |
| 539 | const never = new Promise(() => {}); |
| 540 | const Never = () => { |
| 541 | readValue(never); |
| 542 | }; |
| 543 | |
| 544 | const Wrapper = ({ |
| 545 | suspendFirst = false, |
nothing calls this directly
no test coverage detected