MCPcopy Create free account
hub / github.com/TheOrcDev/orcish-fullstack-admin / RootLayout

Function RootLayout

app/admin/layout.tsx:6–20  ·  view source on GitHub ↗
({
  children,
}: Readonly<{
  children: React.ReactNode;
}>)

Source from the content-addressed store, hash-verified

4import Header from "@/components/ui/header";
5
6export default function RootLayout({
7 children,
8}: Readonly<{
9 children: React.ReactNode;
10}>) {
11 return (
12 <div className="grid min-h-screen w-full md:grid-cols-[220px_1fr] lg:grid-cols-[280px_1fr]">
13 <Sidebar />
14 <div className="flex flex-col">
15 <Header />
16 {children}
17 </div>
18 </div>
19 );
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected