({
children,
}: Readonly<{
children: React.ReactNode
}>)
| 9 | } |
| 10 | |
| 11 | export default function RootLayout({ |
| 12 | children, |
| 13 | }: Readonly<{ |
| 14 | children: React.ReactNode |
| 15 | }>) { |
| 16 | return ( |
| 17 | <ClerkProvider> |
| 18 | <html lang="en"> |
| 19 | <body className="antialiased"> |
| 20 | {children} |
| 21 | <Toaster /> |
| 22 | </body> |
| 23 | </html> |
| 24 | </ClerkProvider> |
| 25 | ) |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected