2025-02-26 23:18:14 +08:00
|
|
|
import MindEditor from "@web/src/components/common/editor/MindEditor";
|
|
|
|
|
import { useParams } from "react-router-dom";
|
|
|
|
|
|
|
|
|
|
export default function PathEditorPage() {
|
2025-02-27 09:47:41 +08:00
|
|
|
const { id } = useParams();
|
2025-02-26 23:18:14 +08:00
|
|
|
|
2025-02-27 09:47:41 +08:00
|
|
|
return (
|
|
|
|
|
<div className="p-2 min-h-screen">
|
|
|
|
|
<MindEditor id={id}></MindEditor>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2025-02-26 23:18:14 +08:00
|
|
|
}
|