Skip to content

Instantly share code, notes, and snippets.

@luistak
Created January 27, 2021 15:44
Show Gist options
  • Save luistak/e40c2f0d173bf44fe85276dfffcc5025 to your computer and use it in GitHub Desktop.
Save luistak/e40c2f0d173bf44fe85276dfffcc5025 to your computer and use it in GitHub Desktop.
function App({ onNewMessage }) {
const handleSubmit = (e) => {
e.preventDefault();
const { target: form } = e;
const input = form?.elements?.something;
const customEvent = new CustomEvent('message', { detail: input.value });
window.dispatchEvent(customEvent)
form.reset();
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment