MCPcopy Create free account
hub / github.com/codeaashu/claude-code / RootLayout

Function RootLayout

web/app/layout.tsx:40–56  ·  view source on GitHub ↗
({
  children,
}: {
  children: React.ReactNode;
})

Source from the content-addressed store, hash-verified

38};
39
40export default function RootLayout({
41 children,
42}: {
43 children: React.ReactNode;
44}) {
45 return (
46 <html lang="en" className="dark" suppressHydrationWarning>
47 <body className={`${inter.variable} ${jetbrainsMono.variable} font-sans antialiased`}>
48 <ThemeProvider>
49 <ToastProvider>
50 {children}
51 </ToastProvider>
52 </ThemeProvider>
53 </body>
54 </html>
55 );
56}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected