first commit

This commit is contained in:
2026-03-26 08:11:29 +03:30
parent f9e3d66a19
commit b8f6526ba4
225 changed files with 18865 additions and 151 deletions

13
src/app/(auth)/layout.tsx Normal file
View File

@@ -0,0 +1,13 @@
"use client";
import {QueryClient, QueryClientProvider} from "@tanstack/react-query";
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
const queryClient = new QueryClient();
return (
<QueryClientProvider client={queryClient}>{children}</QueryClientProvider>
);
}