mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
17 lines
383 B
TypeScript
17 lines
383 B
TypeScript
import ProblemSubmissionFooter from "./components/footer";
|
|
|
|
interface ProblemSubmissionLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function ProblemSubmissionLayout({
|
|
children,
|
|
}: ProblemSubmissionLayoutProps) {
|
|
return (
|
|
<div className="h-full flex flex-col">
|
|
<div className="flex-1">{children}</div>
|
|
<ProblemSubmissionFooter />
|
|
</div>
|
|
);
|
|
}
|