mirror of
https://github.com/massbug/judge4c.git
synced 2025-08-23 10:03:33 +00:00
12 lines
252 B
TypeScript
12 lines
252 B
TypeScript
import { ProblemEditor } from "@/components/problem-editor";
|
|
|
|
export default function CodePage() {
|
|
return (
|
|
<div className="relative flex-1">
|
|
<div className="absolute w-full h-full">
|
|
<ProblemEditor />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|