14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
// app/providers.jsx
|
|
'use client'
|
|
|
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query'
|
|
import { useState } from 'react'
|
|
|
|
export default function Providers({ children }: any) {
|
|
const [queryClient] = useState(() => new QueryClient())
|
|
|
|
return (
|
|
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
|
|
)
|
|
}
|