({
children,
}: Readonly<{
children: React.ReactNode;
}>)
| 18 | }; |
| 19 | |
| 20 | export default function RootLayout({ |
| 21 | children, |
| 22 | }: Readonly<{ |
| 23 | children: React.ReactNode; |
| 24 | }>) { |
| 25 | return ( |
| 26 | <html |
| 27 | lang="en" |
| 28 | className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`} |
| 29 | > |
| 30 | <body className="min-h-full flex flex-col">{children}</body> |
| 31 | </html> |
| 32 | ); |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected