• Proper use of Hooks in ReactJS by Nicolas Noe There a few basic rules we need to follow when using hooks 1. Call Hooks at the Top Level: Hooks must be immediately after declaring the function and keep in mind they are called in the order they are declared. Never call hooks inside a loop, condition, or nested functions since you may disrupt the...
  • React Best Practices (Part 1) by Nicolas Noe In this first part of a series we focus on best practices used at Anden Solutions, LLC when developing ReactJS applications.

Comments are closed.