Tag: React
React Hooks Rules
Only call hooks at the top level of React functions; only call from React functions/custom hooks.
Uncontrolled Components in React
Read input values via refs when you don’t need per-keystroke state.
Form Validation in React
Validate fields on change/blur/submit and show accessible errors.