import type { ReactNode } from 'react'; interface ProfileLayoutShellProps { children: ReactNode; } export default function ProfileLayoutShell({ children }: ProfileLayoutShellProps) { return
{children}
; }