React Router v6 has some key differences compared to the previous versions. With every major release, it gets easier to implement than the previous version.
react
Topics on React and related technologies on the MERN stack
Redux And New React-Redux Hooks
If you are a React developer, you must have heard of Redux for sure. While Redux is such an important tool for React developers, it also introduces extra code and Continue Reading
How to scroll to a certain point in React apps
In traditional web page development, developers would use anchor tags and id to navigate to a certain part of a web page. While you can still add this approach to Continue Reading
How to create Auth Routes with React Router
In my previous posts on React Router, I have explained to you about Basic React Router and Nested React Router. In this post, I will show you how to create Continue Reading
How to implement nested Routes in React Router V5
Nested routes in React are not as complex as you might think, especially, with React Router V5. Routes are nothing but React components. Therefore, just like any other component, they Continue Reading
How to set up a Basic React Router V5
What is React Router React Router is a Library that makes it possible to navigate from one react component to another. In other words, it enables you to switch between Continue Reading
How to use React hooks in functional components
In this short article, I am going to show how to use React hooks in functional components to obtain user input and display it. I use the following simple form Continue Reading