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

14 lines
253 B
TypeScript
Raw Normal View History

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