MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / RootLayout

Function RootLayout

apps/baseai.dev/src/app/layout.tsx:47–62  ·  view source on GitHub ↗
({
	children
}: {
	children: React.ReactNode;
})

Source from the content-addressed store, hash-verified

45}
46
47export default async function RootLayout({
48 children
49}: {
50 children: React.ReactNode;
51}) {
52 return (
53 <html lang="en" className="h-full" suppressHydrationWarning>
54 <body className={`${inter.className}`}>
55 <Providers>
56 <SupportButton />
57 {children}
58 </Providers>
59 </body>
60 </html>
61 );
62}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected