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

@ -4,7 +4,9 @@ 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 (
<div className="p-2 min-h-screen">
<MindEditor id={id}></MindEditor> <MindEditor id={id}></MindEditor>
</div> </div>
);
} }