MCPcopy Create free account
hub / github.com/WebDevSimplified/course-platform / AdminLayout

Function AdminLayout

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

Source from the content-addressed store, hash-verified

4import { ReactNode } from "react"
5
6export default function AdminLayout({
7 children,
8}: Readonly<{ children: ReactNode }>) {
9 return (
10 <>
11 <Navbar />
12 {children}
13 </>
14 )
15}
16
17function Navbar() {
18 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected