Abhishek Rautsweabhishek.hashnode.dev·Dec 7, 2024Mastering React Router DOM: The Shortcut to Smooth Navigation in React 🚀If your app's navigation feels like a never-ending road trip without GPS, it's time to bring in React Router DOM. It’s the magic wand 🪄 that makes navigating through your app as smooth as swiping through Instagram stories. Let’s explore how to set i...React
Simran Gangwanisimrancodes.hashnode.dev·Nov 14, 2024Breaking Out of the Root: A Deep Dive into React PortalsReact is all about organizing components in a structured hierarchy, giving us the flexibility to create multiple components independently while rendering them within a single DOM node, typically called the “root”. But what if a component needs to ste...23 likes·85 readsReact
shohanur rahmanshohan777.hashnode.dev·Oct 9, 2024Why JSX? How JSX works behind the hood?Did you know it is not mandatory to write react code using JSX only? That you can use React.JS using CDN? But that is only the react library. While using the CDN you have to import two packages: react and react-dom. React is the core library that pro...11 likesReact
Prateekprateek333hashnode.hashnode.dev·Aug 11, 2024Mastering React Fiber: The Backbone of Efficient UI Rendering(V6 of react.js series)Understanding React Fiber: The Heart of React's Efficiency When I first started diving into React, one of the concepts that really caught my attention was React Fiber. If you've been working with React, you might have heard about how Fiber is a groun...11 likesReact
Prateekprateek333hashnode.hashnode.dev·Aug 10, 2024Why React Hooks Matter: A Hands-On Guide with useState (Video 5th of react.js series)Understanding Hooks in React: My Journey with useState As I continued my journey into React.js, I reached a crucial point in the learning curve—understanding the need for hooks and where they come into play. In this post, I'll walk you through my exp...11 likesReact
Prateekprateek333hashnode.hashnode.dev·Aug 8, 2024Deep dive into the basics of react.js(vedio 4th of react.js series)Creating a Custom React Element Without React.js: A Deep Dive into the Basics Learned from: [react.js by Hitesh Choudhary youtube] As I delved into React.js, I wanted to understand the core of how React elements work by creating a custom React-like...11 likesReact Dom
Naveen Kumareasycodedev.hashnode.dev·Feb 29, 2024What is Virtual Dom in React?Normally, whenever a user requests a webpage, the browser receives an HTML document for that page from the server. The browser then constructs a logical, tree-like structure from the HTML to show the user the requested page in the client. How re-ren...Web Development
Rajasree Pothularajasree.hashnode.dev·Jul 17, 2023React DOM/Virtual DOMThere are hundreds of articles floating which deal with the comparison of DOM and React-DOM.But what is React-DOM or what is DOM for that matter.Let’s unwind this. Advantages of React React, often stylized as React-dom, has taken the world of web dev...React
Chaitanya Joshiexplainlikeiamfive.hashnode.dev·Apr 27, 2023Re-renderingReacting and re-rendering are as connected as a rocket is to gravity. Without understanding gravity, rocket science is... well, you get the point. The same is true with React and its first principle, re-rendering. Why we don't use let or const https:...24 likes·353 readsReact
Nkiruka Edith Onwugbuforedleychris.hashnode.dev·Feb 12, 2023Understanding the Fundamentals of React: A Beginner's Guide.React is not a framework. React is the subject of numerous discussions. Is it a framework or a library? A framework is a complete solution. Everything you need to create your application is already included. A framework usually wants you to code ever...17 likes·70 readsReactHooks