MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / Layout

Function Layout

examples/remix/app/root.tsx:24–42  ·  view source on GitHub ↗
({ children }: { children: React.ReactNode })

Source from the content-addressed store, hash-verified

22];
23
24function 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
44export default function App() {
45 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected