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…

ReactJavaScriptWeb Development

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.

ApisReactComposability

Batch Updates in React 17 or Earlier Versions

React batch updates for multiple setState() calls inside setTimeout, promises, and native event handlers

ReactWeb DevelopmentFront End Development

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

ProgrammingReactJavaScript

Build a Multi-step Form With React Hook Form

A tutorial on how to build a multi-step form using React Hook Form.

JavascriptReactReact-hook-form

How to Set Focus on an Input in React

Make the user experience better by automatically applying focus to inputs

ReactJavascriptWeb development

React Router DOM: The Differences Between NavLink, Link, and <a>

How to use NavLink, Link, and <a> — explained with examples.

ReactReact routerNavlink

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…

ProgrammingJavascriptReact

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.

JavaScriptWeb DevelopmentReact

How to Print the Entire Component Using screen.debug() in React Testing Library

ReactTddTesting