judge4c/src/app/(app)/playground/@problem/@description/layout.tsx

14 lines
262 B
TypeScript

interface ProblemDescriptionLayoutProps {
children: React.ReactNode;
}
export default function ProblemDescriptionLayout({
children,
}: ProblemDescriptionLayoutProps) {
return (
<div className="h-full flex flex-col">
{children}
</div>
);
}