({ children }: PropsWithChildren)
| 22 | }; |
| 23 | |
| 24 | export const ClientQueryProvider = ({ children }: PropsWithChildren) => { |
| 25 | const queryClient = getQueryClient(); |
| 26 | return ( |
| 27 | <QueryClientProvider client={queryClient}>{children}</QueryClientProvider> |
| 28 | ); |
| 29 | }; |
nothing calls this directly
no test coverage detected