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