({
children,
}: Readonly<{
children: React.ReactNode
}>)
| 8 | } |
| 9 | |
| 10 | export default function RootLayout({ |
| 11 | children, |
| 12 | }: Readonly<{ |
| 13 | children: React.ReactNode |
| 14 | }>) { |
| 15 | return ( |
| 16 | <html lang="en"> |
| 17 | <body>{children}</body> |
| 18 | </html> |
| 19 | ) |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected