({
children
}: {
children: React.ReactNode;
params: Promise<{ section: string; slug: string }>;
})
| 56 | } |
| 57 | |
| 58 | export default async function RootLayout({ |
| 59 | children |
| 60 | }: { |
| 61 | children: React.ReactNode; |
| 62 | params: Promise<{ section: string; slug: string }>; |
| 63 | }) { |
| 64 | return <>{children}</>; |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected