Skip to content

Instantly share code, notes, and snippets.

@khwilo
Last active September 18, 2020 13:28
Show Gist options
  • Select an option

  • Save khwilo/4ff3f6f8f631deb69d112bb9eeaf5f53 to your computer and use it in GitHub Desktop.

Select an option

Save khwilo/4ff3f6f8f631deb69d112bb9eeaf5f53 to your computer and use it in GitHub Desktop.
Tip Calculator App bill and tip input handler functions
// ...
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