New structure and more tabbing

This commit is contained in:
Daniel Kluge
2021-12-15 18:56:32 +01:00
parent b99bdb366c
commit ced2559551
4 changed files with 26 additions and 14 deletions
+9
View File
@@ -0,0 +1,9 @@
import { useCallback, useState } from "react";
import REPLInput from "./REPLInput";
const REPL = () => {
const [history, manipulateHistory] = useState([]);
return <REPLInput historyCallback={manipulateHistory} />;
};
export default REPL;