(props: { children: React.ReactNode })
| 28 | } |
| 29 | |
| 30 | export function HydrateClient(props: { children: React.ReactNode }) { |
| 31 | const queryClient = getQueryClient(); |
| 32 | return ( |
| 33 | <HydrationBoundary state={dehydrate(queryClient)}> |
| 34 | {props.children} |
| 35 | </HydrationBoundary> |
| 36 | ); |
| 37 | } |
nothing calls this directly
no test coverage detected