blog.atomxel.comBuilding 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 ...May 12, 2025·3 min read
blog.atomxel.comHow 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...May 3, 2025·4 min read
blog.atomxel.comStatic 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...Apr 23, 2025·5 min read
blog.atomxel.comThe 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...Mar 27, 2024·3 min read
blog.atomxel.comMastering 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...Mar 20, 2024·3 min read