import { VscArrowLeft, VscArrowRight } from "react-icons/vsc"; import useStore from "../../lib/FlowEditor/FlowEditorStore"; import { LedNodeComponent, SensorNodeComponent } from "./nodes/IO/IO"; import { DelayNodeComponent, MathNodeComponent , StartNodeComponent, FinishNodeComponent } from "./nodes/Logic/Logic"; const Panel = () => { const { panelClosed, togglePanelState } = useStore(); const PanelButton = () => { return (
); }; return ( ); }; export default Panel;