There are two principles that must be observed when coding using Hooks:
Only at the top level should React Hooks be called. It is not permitted to invoke them within nested functions, loops, or conditions.
Only React Function Components are permitted to invoke Hooks.