in app/ItemView/CodeMirrorContainer.tsx [180:192]
render() {
return this.state.failureMessage ? (
<Alert severity="error">{this.state.failureMessage}</Alert>
) : (
<>
<div ref={this.textAreaRef} />
<div
className={this.props.classes?.dragHandle}
ref={this.dragHandleRef}
/>
</>
);
}