({
children,
}: Readonly<{
children: React.ReactNode
}>)
| 58 | } |
| 59 | |
| 60 | export default function RootLayout({ |
| 61 | children, |
| 62 | }: Readonly<{ |
| 63 | children: React.ReactNode |
| 64 | }>) { |
| 65 | return ( |
| 66 | <html lang="en" className="dark"> |
| 67 | <body |
| 68 | className={`${geistSans.variable} ${geistMono.variable} antialiased`} |
| 69 | > |
| 70 | {children} |
| 71 | </body> |
| 72 | <GoogleTagManager gtmId="GTM-WM9RJCSR" /> |
| 73 | </html> |
| 74 | ) |
| 75 | } |
nothing calls this directly
no outgoing calls
no test coverage detected