render()

in src/main/resources/static/components/session/AxtSession.tsx [550:564]


    render() {
        return (
            <div style={{background: "black", fontSize: this.fontSize, height: "100%"}}>
                <div style={{position: "absolute", top: 20, right: 50, zIndex: 1000}}>
                    <Button>{this.state.status}</Button>
                </div>
                <div id="terminal" style={{
                    width: "100%",
                    height: "100%",
                    overflowX: "hidden",
                    overflowY: "scroll"
                }}/>
            </div>
        )
    }