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