MCPcopy Create free account
hub / github.com/codealong-dev/ride-sharing / RootLayout

Function RootLayout

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

Source from the content-addressed store, hash-verified

18};
19
20export default function RootLayout({
21 children,
22}: Readonly<{
23 children: React.ReactNode;
24}>) {
25 return (
26 <html lang="en">
27 <body
28 className={`${geistSans.variable} ${geistMono.variable} antialiased`}
29 >
30 {children}
31 </body>
32 </html>
33 );
34}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected