MCPcopy Create free account
hub / github.com/SyntaxUI/syntaxui / RootLayout

Function RootLayout

src/app/layout.tsx:20–37  ·  view source on GitHub ↗
({
  children,
}: {
  children: React.ReactNode
})

Source from the content-addressed store, hash-verified

18}
19
20export default async function RootLayout({
21 children,
22}: {
23 children: React.ReactNode
24}) {
25 return (
26 <html lang="en" suppressHydrationWarning className={GeistSans.className}>
27 <body>
28 <Providers>
29 {children}
30 <Analytics />
31 <SpeedInsights />
32 <Toaster position="bottom-center" />
33 </Providers>
34 </body>
35 </html>
36 )
37}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected