import type { PropsWithChildren } from 'react'; /** * Layout parent of documentation pages. */ export function Documentation({ children }: PropsWithChildren) { return
{children}
; }