({ children }: { children: ReactNode })
| 579 | ) |
| 580 | |
| 581 | const StrictModeWrapper = ({ children }: { children: ReactNode }) => ( |
| 582 | <StrictMode> |
| 583 | <Suspense fallback={<div>Loading...</div>}>{children}</Suspense> |
| 584 | </StrictMode> |
| 585 | ) |
| 586 | |
| 587 | const { result } = renderHook( |
| 588 | () => useLiveSuspenseQuery((q) => q.from({ persons: collection })), |
nothing calls this directly
no outgoing calls
no test coverage detected