| 5 | import { useState, type ReactNode } from 'react'; |
| 6 | |
| 7 | interface QueryProviderProps { |
| 8 | children: ReactNode; |
| 9 | } |
| 10 | |
| 11 | export function QueryProvider({ children }: QueryProviderProps) { |
| 12 | const [queryClient] = useState( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…