()
| 69 | ) |
| 70 | } |
| 71 | function Page2() { |
| 72 | const query = useQuery(() => ({ |
| 73 | queryKey: key2, |
| 74 | queryFn: () => sleep(10).then(() => 'test2'), |
| 75 | })) |
| 76 | |
| 77 | return ( |
| 78 | <div> |
| 79 | <h1>{query.data}</h1> |
| 80 | </div> |
| 81 | ) |
| 82 | } |
| 83 | |
| 84 | const rendered = render(() => ( |
| 85 | <> |