judge4c/src/app/page.tsx

17 lines
442 B
TypeScript
Raw Normal View History

import CodeEditor from "@/components/code-editor";
import { DEFAULT_PROBLEM } from "@/config/problem";
import MdxPreview from "@/components/problem-description";
2025-02-19 01:00:15 +00:00
export default function Home() {
return (
<div className="h-full flex items-center">
<div className="h-full w-1/2">
<MdxPreview source={DEFAULT_PROBLEM} />
</div>
<div className="h-full w-1/2">
<CodeEditor />
</div>
</div>
)
2025-02-19 01:00:15 +00:00
}