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