A simple demo of how useCallback works
2022-02-20
react
This is how useCallback
works.
In the callback defined on line 🙄, the function body increases the count by 1. We set the dependency list to be shallChange
. This way, the count will not increase unless shallChange
gets a different value.
If you click Count+
multiple times, the count will only increase once. It will increase again after you click Shall Change?
butotn.