Problem Statement
What are the rules that must be followed while using Hooks?
Explanation
Hooks must be called at the top level of a component or custom hook, not inside loops, conditions, or nested functions. They must only be called inside React functions.