({
children
}: {
children: React.ReactNode;
})
| 45 | } |
| 46 | |
| 47 | export default async function RootLayout({ |
| 48 | children |
| 49 | }: { |
| 50 | children: React.ReactNode; |
| 51 | }) { |
| 52 | return ( |
| 53 | <html lang="en" className="h-full" suppressHydrationWarning> |
| 54 | <body className={`${inter.className}`}> |
| 55 | <Providers> |
| 56 | <SupportButton /> |
| 57 | {children} |
| 58 | </Providers> |
| 59 | </body> |
| 60 | </html> |
| 61 | ); |
| 62 | } |
nothing calls this directly
no outgoing calls
no test coverage detected