import React from "react"; import { TextArea } from "@blueprintjs/core"; // Interface for interacting with the editor export interface InputEditorRef { /** * Get the current text content of the editor. */ getValue: () => string; } /** * A very simple text editor for user input */ const InputEditorComponent = (_: {}, ref: React.Ref) => { const textareaRef = React.useRef(null); React.useImperativeHandle( ref, () => ({ getValue: () => textareaRef.current!.value, }), [] ); return (