4 min read
•Question 35 of 48easyRules of Hooks
Understanding hook rules and why they matter.
Rules of Hooks
Hooks have two essential rules that must be followed:
1. Only Call Hooks at the Top Level
Don't call hooks inside loops, conditions, or nested functions.
2. Only Call Hooks from React Functions
Call hooks from function components or custom hooks, not regular JS functions.