import { NextPage } from "next"; import styles from "../../styles/REPL/REPLHistory.module.css"; const REPLHistory: NextPage<{history: string[]}> = ({history}) => { return
{ history.map((value, idx) =>
{value === "" ? "\u00A0" : value}
) }
; }; export default REPLHistory;