import { Editor } from "./editor/components/editor"; import * as Config from "./config"; import { createRoot } from "react-dom/client"; import React from "react"; const container = document.getElementById("knowledge-space-editor"); const root = createRoot(container); root.render(<Editor spaceId={Config.SPACE} />);