mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-19 07:56:34 +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>
|
||
|
);
|
||
|
}
|