Xterm.js: How to hide xterm-helper-textarea?
问题 I try to use Xtermjs in Reactjs. but when I follow the guide. the result shows as following: It should show without top textarea and text 'W'. My codes is as following: import React from 'react'; import { Terminal } from 'xterm'; import { FitAddon } from 'xterm-addon-fit'; class XTerminal extends React.Component { componentDidMount() { const {id} = this.props; const terminalContainer = document.getElementById(id); const terminal = new Terminal({cursorBlink: true}); const fitAddon = new