PNPiyush Nanwaniinblog.atomxel.com·May 12, 2025 · 3 min readBuilding a Multi-Page Application with React RouterReact Router is a powerful routing library built on top of React that helps you add new screens and flows to your application incredibly quickly, all while keeping the URL in sync with what's being displayed on the page. React manipulates the DOM by ...00
PNPiyush Nanwaniinblog.atomxel.com·May 3, 2025 · 4 min readHow to Integrate React JS with a REST API: A Step-by-Step GuideReact is popular frontend JavaScript library for building web application. You need to integrate APIs in your react project for if you want to build production ready web application. What is a REST API? REST API stand for A Representational State Tra...00
PNPiyush Nanwaniinblog.atomxel.com·Apr 23, 2025 · 5 min readStatic Site Generation (SSG) vs. Server-Side Rendering (SSR) in Next.jsWhat is Next js ? Next.js is a React framework for building full-stack web applications. Rendering is one of the features of Next.js that is very useful for developer. In this blog post, we'll explore the key differences between SSG and SSR, their ad...00
PNPiyush Nanwaniinblog.atomxel.com·Mar 27, 2024 · 3 min readThe React Hooks you need to knowIn this blog, we'll cover fundamental hooks like useState, useEffect, useRef, and useContext. Then we will talk about custom hooks. React Hooks useState The useState hook allows functional components to manage state. Let's look at a simple example: i...00
PNPiyush Nanwaniinblog.atomxel.com·Mar 20, 2024 · 3 min readMastering State Management in ReactIn this blog, we'll explore various state management strategies, covering prop drilling, the useContext hook, useReducer, and popular state management libraries. Prop Drilling Prop drilling refers to the process of passing down props through multiple...00