Created
June 23, 2019 22:26
-
-
Save jsmanifest/6f4eebe16ce4885fb656dc1e2e6395f9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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