© 2023 Hashnode
#react-router
Next.js 13 is the latest version of the popular React-based web framework, which was released in November 2021. 1. Incremental Static Regeneration (ISR): This feature allows Next.js to update static c…
Hola my fellow readers! Welcome to my first tech blog ever. In my first blog, I will explore how to pass props with React Router (Dynamic Routing) and extract them using the useParams hook with short …
You've come to the right place if you're looking for a detailed guide on React Router and how to use it in your React application. In this tutorial, you will learn how to install React Router in your …
Welcome to the fourth part of our ReactJS series! In this blog, we're going to explore React Router, a popular library that provides client-side routing to your React application. Routing is an essent…
Code Splitting It's a feature supported by bundlers used to create multiple bundles to be loaded dynamically at the runtime. For example, let's take a blogging site which has many pages and is very he…
Are you looking for an efficient way to navigate your React app? Look no further than React Router, a powerful library that makes it easy to manage navigation and state transitions in your application…
Installation npm install react-router-dom@6 Features BrowserRouter --component wraps the parent component so that react router can work in it and it's children. <BrowserRouter>/* will be available …
ReactJS is one of the most popular front-end web development frameworks, known for its flexibility, efficiency, and ease of use. In recent years, ReactJS has undergone many updates and improvements, l…
Have you ever been confused or wondered how to trigger the leave confirmation dialog if you tried to click another link page with React? But we want to only trigger our custom dialog. Not the alert fr…
The GitHub user profile Application Programming Interface(API) is a Representational State Transfer(REST) API. REST API allows communications via HTTP requests. The GitHub user profile API gives Github users access to their GitHub profile. …