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