Last active
September 18, 2020 13:28
-
-
Save khwilo/4ff3f6f8f631deb69d112bb9eeaf5f53 to your computer and use it in GitHub Desktop.
Tip Calculator App bill and tip input handler functions
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 Home = () => { | |
| // ... | |
| const handleBillChange = (value) => { | |
| setBill(value); | |
| }; | |
| const handleTipChange = (value) => { | |
| setTip(value); | |
| }; | |
| // ... | |
| } | |
| export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment