({ children })
| 22 | }; |
| 23 | |
| 24 | export default function RootLayout({ children }) { |
| 25 | |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
| 30 | return ( |
| 31 | <html lang="en"> |
| 32 | <body |
| 33 | className={`${geistSans.variable} ${geistMono.variable} antialiased`} |
| 34 | > |
| 35 | <Navbar/> |
| 36 | {children} |
| 37 | </body> |
| 38 | </html> |
| 39 | ); |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected