MCPcopy Create free account
hub / github.com/sourcebot-dev/sourcebot / QueryClientProvider

Function QueryClientProvider

packages/web/src/app/queryClientProvider.tsx:8–14  ·  view source on GitHub ↗
({ children, ...props }: Omit<QueryClientProviderProps, 'client'>)

Source from the content-addressed store, hash-verified

6const queryClient = new QueryClient();
7
8export const QueryClientProvider = ({ children, ...props }: Omit<QueryClientProviderProps, 'client'>) => {
9 return (
10 <QueryClientProviderBase client={queryClient} {...props}>
11 {children}
12 </QueryClientProviderBase>
13 )
14}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected