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