remove buttons

This commit is contained in:
David Lechner
2020-04-15 12:57:32 -05:00
parent 5bbe820c68
commit 4711d5bceb
5 changed files with 1 additions and 15 deletions
+1 -15
View File
@@ -1,12 +1,8 @@
import React from 'react';
import AceEditor from 'react-ace';
import './App.css';
import { Connection } from './Connection';
import { Connection } from './old/Connection';
import { Terminal } from './Terminal';
import { Run } from './Run';
import { Stop } from './Stop';
import { Repl } from './Repl';
import { Flash } from './Flash';
import 'ace-builds/src-noconflict/mode-python';
import 'ace-builds/src-noconflict/theme-github';
@@ -17,16 +13,6 @@ function App(): JSX.Element {
const editor = React.createRef<AceEditor>();
return (
<div className="App">
<header className="App-header">
<Connection
onData={(e): void => terminal.current?.write(e)}
ref={connection}
/>
<Run connection={connection} editor={editor} />
<Stop connection={connection} />
<Repl connection={connection} />
<Flash />
</header>
<Terminal
onData={(d): void => {
connection.current?.write(d);
View File
View File
View File