Mar 4 · 12 min read · Table of Contents The File Structure We're Working With What is a Component? (Function as a Component) Fragments — What They Are and What Happens Without Them Can You Write Components Inside main.
Join discussionSep 15, 2025 · 3 min read · React = Library. {not a framework} React is a Core functional library, contains 2 major libraries ReactDOM : used in React implementation on WEB. ReactNative : used in React implementation on Mobile. Creating a React app Run the cmd into the term...
Join discussionAug 26, 2025 · 24 min read · What is React React is a powerful, open-source JavaScript library for building user interfaces, primarily for single-page applications where you need fast and responsive UIs. Developed and maintained by Facebook and a community of individual develo...
Join discussion
Jul 23, 2025 · 3 min read · When you're building features like a to-do list, a chat app, or anything that dynamically creates items, you'll need unique IDs. And it’s tempting to go with what you already know: const id1 = Math.random(); const id2 = Date.now(); But wait up… is t...
Join discussion
Mar 12, 2025 · 2 min read · When I first started with React, I focused on building components, handling state, and managing props. But over time, I realized that it’s the small details that shape how efficiently we write React code. Let’s talk about some key aspects that often ...
Join discussionDec 7, 2024 · 3 min read · 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...
Join discussion
Nov 14, 2024 · 7 min read · React 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...
Join discussion