({ children })
| 10 | }; |
| 11 | |
| 12 | export default function RootLayout({ children }) { |
| 13 | return ( |
| 14 | <html lang="en"> |
| 15 | <body className={inter.className}> |
| 16 | <Navbar/> |
| 17 | {children} |
| 18 | </body> |
| 19 | </html> |
| 20 | ); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected