Gauss Codergausscoder.hashnode.dev·Sep 12, 2024React Router for routing in React (Routing Hooks)In a React app, you typically use React Router for routing. To handle routing in a React application, you can use the useNavigate and useParams hooks provided by React Router, as useRouter is not directly available in React Router. Here’s how you can...DiscussReact Web ApplicationReact
Shubhajit Chatterjeeshubhajit-chatterjee.hashnode.dev·Sep 8, 2024Performant Web AppsImagine a world where dynamic web applications are so responsive, they feel as fast as static sites served directly from a user’s local system. That level of speed would create a seamless and delightful user experience. But is that even possible? Dyn...DiscussReact
Praveen Rajpraveenrajprp.hashnode.dev·Aug 23, 2024The Magic of React RouterBack in the day, navigating between pages in a web app was straightforward—you'd use the <a> tag to link to different pages. This worked fine, but every time you clicked a link, the entire page would reload, slowing things down. Then React came along...DiscussReact
Indrajit Sahanisahaniindrajit.hashnode.dev·Jul 20, 2024Beginner's guide to React Routerwhat is React Router React Router is a powerful library that manages navigation and routing in the React app. React Router offer client side rendering. In traditional website when the a person click on a link the browser request HTML,CSS and JavaScri...Discuss·1 like·55 readsNode.js
Rudraksh Tripathihustlecoder.hashnode.dev·Jul 19, 2024Learning React RouterIn this article, we will explore React Router and create a webpage that can navigate to different sections. We will create a components folder with subfolders for about, contact, footer, header, and home. The Footer and Header components will remain ...DiscussLoader in react
Abhishek bhattbhattabhi.hashnode.dev·Jul 15, 2024Navigating the Evolution of React Router: A Developer's JourneyAs a developer returning to React after a five-year hiatus, I was struck by the significant changes in the ecosystem. One area that particularly caught my attention was React Router, a fundamental library for handling navigation in React applications...DiscussReact
Sreejit Senguptosreesen.hashnode.dev·Jul 2, 2024Improve UX of React App with 'loader' function in React RouterHey everyone I welcome you all again to my another tutorial where we will be learning about how we can improve the User Experience in our React apps. Think! how do you deal with incoming data currently in React, say the data has to fetched from an ex...DiscussReact
Syed Aquib Alihadetan.hashnode.dev·Jun 15, 2024React Router Dom - Routes, React Router Hooks, Navigation and Protected Routesreact-router-dom React Router is a powerful library for handling routing in React applications. It provides a declarative way to define routes and manage navigation. Here’s a detailed guide: Setting Up React Router npm install react-router-dom Route...DiscussReact router hooks
Dharshan kdharshan.hashnode.dev·May 29, 2024Quick Setup for React Router v6 in Your React AppBootstrapping application Lets use Vite to setup our react app as it is the go to way of creating a react application as of today. Run the following command in your favorite terminal to get started. Follow the onscreen instructions. I am choosing to ...Discuss·1 like·56 readsJavaScript
Laniyan Abdul-Qawi Oladotun devdotun.hashnode.dev·May 21, 2024Building a Multi-Page App with React Router DOM: A Comprehensive GuideSo if you are here, you are probably lost in the react-router-dom docs and you need help one way or the other understanding how react-router works. Well you are in the right place. Table of Contents Introduction to React Router DOM Setting Up a Rea...Discuss·1 like·26 readsReact