add
This commit is contained in:
parent
da5d6f635b
commit
28cc3416b4
|
@ -2,9 +2,11 @@ import MindEditor from "@web/src/components/common/editor/MindEditor";
|
|||
import { useParams } from "react-router-dom";
|
||||
|
||||
export default function PathEditorPage() {
|
||||
const { id } = useParams();
|
||||
const { id } = useParams();
|
||||
|
||||
return <div className="p-2">
|
||||
<MindEditor id={id}></MindEditor>
|
||||
</div>
|
||||
return (
|
||||
<div className="p-2 min-h-screen">
|
||||
<MindEditor id={id}></MindEditor>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue