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