Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 23, 2019 22:25
Show Gist options
  • Save jsmanifest/fcc37c747a7a54df0f9a31b2acec4f03 to your computer and use it in GitHub Desktop.
Save jsmanifest/fcc37c747a7a54df0f9a31b2acec4f03 to your computer and use it in GitHub Desktop.
const useApp = () => {
const onSubmit = (e) => {
e.preventDefault()
console.log('Submitted')
}
return {
onSubmit,
}
}
export default useApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment