({ children })
| 11 | }; |
| 12 | |
| 13 | export default function RootLayout({ children }) { |
| 14 | return ( |
| 15 | <html lang="en"> |
| 16 | <body className={inter.className}> |
| 17 | <Navbar /> |
| 18 | <div className="container mx-auto min-h-[85vh]"> |
| 19 | {children} |
| 20 | </div> |
| 21 | <Footer /> |
| 22 | </body> |
| 23 | </html> |
| 24 | ); |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected