()
| 614 | } |
| 615 | |
| 616 | function Component() { |
| 617 | const { data } = useSuspenseQuery({ |
| 618 | queryKey: key, |
| 619 | queryFn: () => sleep(3000).then(() => 'data'), |
| 620 | gcTime: 1000, |
| 621 | }) |
| 622 | |
| 623 | return <div>{data}</div> |
| 624 | } |
| 625 | |
| 626 | function Page2() { |
| 627 | return <div>page2</div> |
nothing calls this directly
no test coverage detected
searching dependent graphs…