import type { PropsWithChildren } from 'react'; export default function PrivateLayout({ children }: PropsWithChildren) { return <>{children}; }