import styles from '../styles/Textbox.module.css' export default function Textbox(props) { return ( { if (props.submitOnEnter && event.key === 'Enter' && props.submit) { props.submit(event.target.value); // props.value = ""; // this is not how you do it event.target.value = ""; } }}> ) }