({ children }: { children: React.ReactNode })
| 26 | }; |
| 27 | |
| 28 | export default function RootLayout({ children }: { children: React.ReactNode }): JSX.Element { |
| 29 | return ( |
| 30 | <html lang="en" suppressHydrationWarning> |
| 31 | <body |
| 32 | className={`${fontSans.className} min-h-screen bg-neutral-50 dark:bg-neutral-950 overflow-x-hidden antialiased`} |
| 33 | > |
| 34 | <ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange> |
| 35 | <NextTopLoader color="#2E78C7" height={2} /> |
| 36 | <Providers>{children}</Providers> |
| 37 | <Toaster /> |
| 38 | </ThemeProvider> |
| 39 | </body> |
| 40 | </html> |
| 41 | ); |
| 42 | } |
nothing calls this directly
no outgoing calls
no test coverage detected