Skip to content

Instantly share code, notes, and snippets.

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