This commit is contained in:
Daniel Kluge
2022-01-05 17:52:20 +01:00
parent 25340429ee
commit 79753de78f
5 changed files with 21 additions and 23 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ const REPL: NextPage<{inputRef: MutableRefObject<HTMLInputElement|undefined>}> =
const focusInput = () => {
if (inputRef.current) inputRef.current.focus();
}
};
return (<div className={styles.container}>
<REPLHistory history={history} inputRef={inputRef} />