init project portal web
This commit is contained in:
10
components/module/query-wrapper/index.tsx
Normal file
10
components/module/query-wrapper/index.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
'use client';
|
||||
|
||||
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
||||
// import { useState } from 'react';
|
||||
|
||||
export default function QueryWrapper({ children }: { children: React.ReactNode }) {
|
||||
const queryClient = new QueryClient()
|
||||
|
||||
return <QueryClientProvider client={queryClient}>{children}</QueryClientProvider>;
|
||||
}
|
||||
Reference in New Issue
Block a user