This commit is contained in:
ditiqi 2025-02-27 09:47:41 +08:00
parent da5d6f635b
commit 28cc3416b4
1 changed files with 6 additions and 4 deletions

View File

@ -2,9 +2,11 @@ import MindEditor from "@web/src/components/common/editor/MindEditor";
import { useParams } from "react-router-dom"; import { useParams } from "react-router-dom";
export default function PathEditorPage() { export default function PathEditorPage() {
const { id } = useParams(); const { id } = useParams();
return <div className="p-2"> return (
<MindEditor id={id}></MindEditor> <div className="p-2 min-h-screen">
</div> <MindEditor id={id}></MindEditor>
</div>
);
} }