mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
18 lines
No EOL
375 B
TypeScript
18 lines
No EOL
375 B
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
|
|
export const QueryProvider = ({
|
|
children
|
|
}: {
|
|
children: React.ReactNode
|
|
}) => {
|
|
const [queryClient] = useState(() => new QueryClient());
|
|
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
{children}
|
|
</QueryClientProvider>
|
|
)
|
|
} |