first commit
This commit is contained in:
7
src/app/providers/AppProviders.tsx
Normal file
7
src/app/providers/AppProviders.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { QueryClientProvider } from "@tanstack/react-query";
|
||||
import { queryClient } from "../config/queryClient";
|
||||
import type { PropsWithChildren } from "react";
|
||||
|
||||
export const AppProviders = ({ children }: PropsWithChildren) => {
|
||||
return <QueryClientProvider client={queryClient}>{children}</QueryClientProvider>;
|
||||
};
|
||||
Reference in New Issue
Block a user