import { useCallback, useState } from "react"; import REPLInput from "./REPLInput"; const REPL = () => { const [history, manipulateHistory] = useState([]); return ; }; export default REPL;