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