mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
14 lines
253 B
TypeScript
14 lines
253 B
TypeScript
|
interface ProblemSolutionLayoutProps {
|
||
|
children: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function ProblemSolutionLayout({
|
||
|
children,
|
||
|
}: ProblemSolutionLayoutProps) {
|
||
|
return (
|
||
|
<div className="h-full flex flex-col">
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|