Have you ever used a complex web app with many features, modal windows, or side panels? Where you get to the perfect state with just the right information on the screen after a few clicks through…
The following are quick tips to increase performance in your React application by understanding re-rendering and memoization. To better understand the following tips it’s important to know when React…
Basically, no. In the past, you had to import it but with the new React 17 update , you don’t need to import React . Why we use index.js here? When we need to import a component, we could’ve done it…
A good API architecture is important in effectively handling the communication between microservices. Don`t be afraid to create new microservices, and try to decouple functionality as much as…
Common data fetching practices such as the Fetch API or the Axios library work well in React. They can be used to send and fetch data very easily. But what about caching/data pagination/automatic…