({
children,
}: {
children: React.ReactNode
})
| 22 | } |
| 23 | |
| 24 | export default function RootLayout({ |
| 25 | children, |
| 26 | }: { |
| 27 | children: React.ReactNode |
| 28 | }) { |
| 29 | return ( |
| 30 | <html lang="en" className={`${inter.variable} ${jetbrains.variable} dark`} suppressHydrationWarning> |
| 31 | <body className="bg-white dark:bg-black text-black dark:text-white font-sans antialiased transition-colors duration-200"> |
| 32 | <ThemeProvider> |
| 33 | {children} |
| 34 | </ThemeProvider> |
| 35 | </body> |
| 36 | </html> |
| 37 | ) |
| 38 | } |
nothing calls this directly
no outgoing calls
no test coverage detected