React
Const vs. Function For React Functional Components
For some time now I have been wondering if there is a benefit to using function over const when declaring functional components, and vice versa. So, I decided to do a little research, and I will sum…
How to Compose and Integrate APIs Together as if You Were Using NPM for APIs
Learn how to bring React's paradigm of Composability to the world of APIs, microservices, and databases — powered by Wundergraph, build-time GraphQL, and the BFF/API Gateway pattern.
Batch Updates in React 17 or Earlier Versions
React batch updates for multiple setState() calls inside setTimeout, promises, and native event handlers
5 Things We Can Do to Decrease Load Time of the React Application
1. Clean Unused Lines Of Code, 2. Clean Unused React Components, 3. Splitting Up Into Components, 4. Server - Side - Rendering, & 5. State Management
Build a Multi-step Form With React Hook Form
A tutorial on how to build a multi-step form using React Hook Form.
How to Set Focus on an Input in React
Make the user experience better by automatically applying focus to inputs
React Router DOM: The Differences Between NavLink, Link, and <a>
How to use NavLink, Link, and <a> — explained with examples.
Why Create React App is Outdated in 2022
Create React App is what almost every developer (including myself) learned to use first when learning the JavaScript library React and I think this has led to a couple of significant flaws. While…
React Router: How to Use the useParams() Hook
A guide (with examples) on how you can use the useParams() hook to improve your web applications.