mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-19 07:56:34 +00:00
17 lines
447 B
TypeScript
17 lines
447 B
TypeScript
import CodeEditor from "@/components/code-editor";
|
|
import { DEFAULT_PROBLEM } from "@/config/problem";
|
|
import MdxPreview from "@/components/problem-description";
|
|
|
|
export default function HomePage() {
|
|
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>
|
|
);
|
|
}
|