Loading...
;
9 |
10 | return (
11 |
12 |
User
13 |
{JSON.stringify(user, null, 2)}
14 |
15 | );
16 | }
17 |
--------------------------------------------------------------------------------
/src/app/providers.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
4 | import { SessionProvider } from "../providers/SessionProvider";
5 | import { Suspense } from "react";
6 |
7 | const queryClient = new QueryClient();
8 |
9 | export function Provider({ children }: { children: React.ReactNode }) {
10 | return (
11 |