All checks were successful
Build and Push Docker Image / build (push) Successful in 3m6s
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import { QueryClient } from '@tanstack/solid-query'
|
|
|
|
export function getContext() {
|
|
const queryClient = new QueryClient()
|
|
return {
|
|
queryClient,
|
|
}
|
|
}
|