-- full integration with mol-edit backend
-- added readme
-- added vqe local_computational
This commit is contained in:
2026-05-25 19:17:04 +03:00
parent 76fe1c4294
commit c5ece3ff37
16 changed files with 1134 additions and 163 deletions

View File

@@ -4,6 +4,7 @@ import { useEffect, useRef } from "react";
interface TextAreaProps {
text: string;
onTextChange: (text: string) => void;
enabled: boolean;
}
export function CodeTextArea(props: TextAreaProps) {
@@ -52,6 +53,7 @@ export function CodeTextArea(props: TextAreaProps) {
className="MoleculeEdit"
value={props.text}
ref={inputRef}
disabled={!props.enabled}
onChange={(e) => {
props.onTextChange(e.currentTarget.value);
}}