MCPcopy Create free account
hub / github.com/WebDevSimplified/course-platform / RootLayout

Function RootLayout

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

Source from the content-addressed store, hash-verified

9}
10
11export default function RootLayout({
12 children,
13}: Readonly<{
14 children: React.ReactNode
15}>) {
16 return (
17 <ClerkProvider>
18 <html lang="en">
19 <body className="antialiased">
20 {children}
21 <Toaster />
22 </body>
23 </html>
24 </ClerkProvider>
25 )
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected