({
children,
}: {
children: React.ReactNode
})
| 18 | } |
| 19 | |
| 20 | export default async function RootLayout({ |
| 21 | children, |
| 22 | }: { |
| 23 | children: React.ReactNode |
| 24 | }) { |
| 25 | return ( |
| 26 | <html lang="en" suppressHydrationWarning className={GeistSans.className}> |
| 27 | <body> |
| 28 | <Providers> |
| 29 | {children} |
| 30 | <Analytics /> |
| 31 | <SpeedInsights /> |
| 32 | <Toaster position="bottom-center" /> |
| 33 | </Providers> |
| 34 | </body> |
| 35 | </html> |
| 36 | ) |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected