import { useEffect, useRef, useState } from "react"; import { MapEditor } from "@map"; import { IEditorState, editorAction } from "@store"; import Tools from "./Tools"; import "./index.less"; const Plot = () => { const mapStageRef = useRef(null); const [mapEditor, setMapEditor] = useState(null); useEffect(() => { if (mapEditor == null) { const editor = new MapEditor(mapStageRef.current!); (window as any).mapEditor = editor; setMapEditor(editor); editorAction.registerMapEditor(editor); } }, [mapEditor]); return ( <>
{/*
*/}
); }; export default Plot;