({
children,
}: Readonly<{ children: ReactNode }>)
| 4 | import { ReactNode } from "react" |
| 5 | |
| 6 | export default function AdminLayout({ |
| 7 | children, |
| 8 | }: Readonly<{ children: ReactNode }>) { |
| 9 | return ( |
| 10 | <> |
| 11 | <Navbar /> |
| 12 | {children} |
| 13 | </> |
| 14 | ) |
| 15 | } |
| 16 | |
| 17 | function Navbar() { |
| 18 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected