Skip to content
Snippets Groups Projects
Commit 80007749 authored by Matthias Konitzny's avatar Matthias Konitzny :fire:
Browse files

Moved editor main component out of components folder

parent 39c0b6aa
No related branches found
No related tags found
No related merge requests found
import { Editor } from "./editor/components/editor";
import { Editor } from "./editor/editor";
import * as Config from "./config";
import { createRoot } from "react-dom/client";
......
File moved
import React from "react";
import { Graph } from "../graph";
import { loadGraphJson } from "../../common/datasets";
import { NodeDetails } from "./nodedetails";
import { SpaceSelect } from "./spaceselect";
import { Graph } from "./graph";
import { loadGraphJson } from "../common/datasets";
import { NodeDetails } from "./components/nodedetails";
import { SpaceSelect } from "./components/spaceselect";
import "./editor.css";
import { ForceGraph2D } from "react-force-graph";
import { Node } from "../../common/node";
import { HistoryNavigator } from "./historynavigator";
import { GraphElement } from "../../common/graphelement";
import { Link } from "../../common/link";
import { NodeTypesEditor } from "./nodetypeseditor";
import { SpaceManager } from "./spacemanager";
import { SelectLayer } from "./selectlayer";
import { Node } from "../common/node";
import { HistoryNavigator } from "./components/historynavigator";
import { GraphElement } from "../common/graphelement";
import { Link } from "../common/link";
import { NodeTypesEditor } from "./components/nodetypeseditor";
import { SpaceManager } from "./components/spacemanager";
import { SelectLayer } from "./components/selectlayer";
import { NodeType } from "../structures/graph/nodetype";
type propTypes = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment