mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
14 lines
262 B
TypeScript
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>
|
|
);
|
|
}
|