mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-19 16:22:24 +00:00
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
|
import { AIProblemEditor } from '@/components/ai-optimized-editor';
|
||
|
|
||
|
export default function TestAiEditorPage() {
|
||
|
return (
|
||
|
<div className="container mx-auto p-4">
|
||
|
<h1 className="text-2xl font-bold mb-4">AI 编辑器测试页</h1>
|
||
|
<AIProblemEditor />
|
||
|
</div>
|
||
|
);
|
||
|
}
|