Skip to content

Instantly share code, notes, and snippets.

@ltsharma
Created June 12, 2020 22:21
Show Gist options
  • Save ltsharma/d5152ca1378fed90e651c5fca811b5cc to your computer and use it in GitHub Desktop.
Save ltsharma/d5152ca1378fed90e651c5fca811b5cc to your computer and use it in GitHub Desktop.
export default ()=>{
//Sates is 0 initially
const [pressCount, setPressCount] = useState(0);
//Function to update last state by +1
const updateButtonPress = useCallback(() => {
setPressCount(pressCount + 1);
}, []);
//Empty dependancy
return(
<Button onPress={updateButtonPress} title="Add 1" />
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment