Skip to content

Instantly share code, notes, and snippets.

@adityatyagi
Created June 7, 2022 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adityatyagi/4c4302eaac13f18a44296d836b60bdec to your computer and use it in GitHub Desktop.
Save adityatyagi/4c4302eaac13f18a44296d836b60bdec to your computer and use it in GitHub Desktop.
// Button 1
const updateLoading = () => {
setIsLoading(true);
// ...
// state is not updated here
// ...
setIsLoading(false);
// ...
// state is not updated here
// ...
setIsLoading(true);
// it will still print "false"
console.log(isLoading);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment