frontpage/components/REPL/index.tsx

9 lines
247 B
TypeScript
Raw Normal View History

2021-12-15 18:56:32 +01:00
import { useCallback, useState } from "react";
import REPLInput from "./REPLInput";
const REPL = () => {
const [history, manipulateHistory] = useState([]);
return <REPLInput historyCallback={manipulateHistory} />;
};
export default REPL;