interface ProblemDescriptionLayoutProps { children: React.ReactNode; } export default function ProblemDescriptionLayout({ children, }: ProblemDescriptionLayoutProps) { return (
{children}
); }