Created
January 27, 2021 15:45
-
-
Save luistak/af340c6d605a391b282c92b29b9d3963 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function App({ onNewMessage }) { | |
const handleSubmit = (e) => { | |
e.preventDefault(); | |
const { target: form } = e; | |
const input = form?.elements?.something; | |
onNewMessage(input.value); | |
form.reset(); | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment