({ children }: { children: ReactNode })
| 14 | }; |
| 15 | |
| 16 | export default function RootLayout({ children }: { children: ReactNode }) { |
| 17 | return ( |
| 18 | <html lang="en"> |
| 19 | <body className={inter.className}> |
| 20 | {children} |
| 21 | <Toaster /> |
| 22 | <SpeedInsights /> {/* Add SpeedInsights */} |
| 23 | </body> |
| 24 | <Analytics /> |
| 25 | </html> |
| 26 | ); |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected