mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-03 23:30:50 +00:00
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import { ProblemsetHeader } from "@/features/problemset/components/header";
|
|
|
|
interface ProblemsetLayoutProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function ProblemsetLayout({ children }: ProblemsetLayoutProps) {
|
|
return (
|
|
<div className="h-full flex flex-col">
|
|
<ProblemsetHeader />
|
|
{children}
|
|
</div>
|
|
);
|
|
} |