MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / RootLayout

Function RootLayout

src/app/layout.tsx:25–46  ·  view source on GitHub ↗
({
  children,
}: Readonly<{
  children: React.ReactNode;
}>)

Source from the content-addressed store, hash-verified

23};
24
25export default function RootLayout({
26 children,
27}: Readonly<{
28 children: React.ReactNode;
29}>) {
30 return (
31 <html lang="en">
32 <body
33 className={`${geistSans.variable} ${geistMono.variable} antialiased`}
34 >
35 <TRPCReactProvider>
36 <NuqsAdapter>
37 <Provider>
38 {children}
39 <Toaster />
40 </Provider>
41 </NuqsAdapter>
42 </TRPCReactProvider>
43 </body>
44 </html>
45 );
46}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected