({ children }: { children: React.ReactNode })
| 22 | ]; |
| 23 | |
| 24 | function Layout({ children }: { children: React.ReactNode }) { |
| 25 | return ( |
| 26 | <html lang="en"> |
| 27 | <head> |
| 28 | <meta charSet="utf-8" /> |
| 29 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 30 | <Meta /> |
| 31 | <Links /> |
| 32 | </head> |
| 33 | <body className="min-h-screen bg-background font-sans antialiased"> |
| 34 | <div className="min-h-screen bg-gray-50 flex items-center justify-center p-4"> |
| 35 | {children} |
| 36 | </div> |
| 37 | <ScrollRestoration /> |
| 38 | <Scripts /> |
| 39 | </body> |
| 40 | </html> |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | export default function App() { |
| 45 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected