judge4c/src/app/(app)/problems/[id]/@Code/page.tsx

12 lines
274 B
TypeScript
Raw Normal View History

2025-04-13 04:06:08 +00:00
import { ProblemEditor } from "@/components/problem-editor";
export default function CodePage() {
return (
<div className="relative flex-1 border-x border-muted">
<div className="absolute w-full h-full">
<ProblemEditor />
2025-04-13 04:06:08 +00:00
</div>
</div>
);
}