({ children }: { children: React.ReactNode })
| 40 | }) |
| 41 | |
| 42 | function RootDocument({ children }: { children: React.ReactNode }) { |
| 43 | return ( |
| 44 | <html lang="en"> |
| 45 | <head> |
| 46 | <HeadContent /> |
| 47 | </head> |
| 48 | <body> |
| 49 | {children} |
| 50 | <Scripts /> |
| 51 | </body> |
| 52 | </html> |
| 53 | ) |
| 54 | } |
nothing calls this directly
no outgoing calls
no test coverage detected