Slide 18
Slide 18 text
Introduction of Hooks API
useEffect
A hook to use a side effect function that is called the number of times
according to the strategy specified by computation.
Optionally the function can be cancelled when this hook is unmount
from the view tree or when the side-effect function is called again.
Note that the execution is deferred until after all the hooks have been
evaluated.