mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-04 15:50:51 +00:00
17 lines
355 B
TypeScript
17 lines
355 B
TypeScript
|
import { Banner } from "@/components/banner";
|
||
|
|
||
|
interface ProblemsetLayoutProps {
|
||
|
children: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function ProblemsetLayout({ children }: ProblemsetLayoutProps) {
|
||
|
return (
|
||
|
<div className="flex flex-col">
|
||
|
<Banner />
|
||
|
<main className="container mx-auto p-4">
|
||
|
{children}
|
||
|
</main>
|
||
|
</div>
|
||
|
);
|
||
|
}
|