A brief guide to Render Props PatternBefore diving into what Render Props Pattern is, understanding whatProps in React is crucial. Props (short for properties) are a way to pass data from a parent component to a child component. It is a Aug 6, 2026·3 min read·47
React Side Effects Explained: What Developers Need to KnowImagine a function is a little machine in your code. You give it an input, it does some work, and it gives you an output. A side effect is when this machine does more than just giving you an output. It also changes something outside of itself. The si...Aug 22, 2025·4 min read·17
useEffect Made Easy: A Beginner's HandbookWhen building React appplications, managing side-effect is crucial - whether it’s fetching data, subscribing to a Websocket or updating the DOM manually. That's where React’s useEffect hook comes into play. In this blog, we will dive into the useEffe...Aug 15, 2025·4 min read·14
Understanding State in React: The Backbone of Dynamic UIsWhen you build applications with React, state is one of the most essential concepts to master. It’s what gives React components their dynamic and interactive behavior. Without state, your React app is just static HTML with JavaScript syntax. If we ha...Aug 9, 2025·2 min read·15
JavaScript PromisesJavaScript is synchronous means it executes the code line by line i.e. from top to bottom. The execution won't move to the next line until the first line is completed. However, the web is dynamic, with various tasks happening simultaneously – like fe...Aug 20, 2023·2 min read·30
Simplify Web Layouts with Auto-Fit and Auto-Fill in GridsThe grid system plays a pivotal role in responsive design, acting as a fundamental tool for perfecting layouts in web development. With the ever-increasing diversity of devices and screen sizes, creating a consistent and visually appealing user exper...Jun 18, 2023·3 min read·22
Why is everyone talking about The Psychology of Money?Today, we will talk about The International Bestseller book The Psychology of Money. You might be thinking, "What is so special about this book?" Well, it is definitely a remarkable book. Everyone should give it a try. If you still haven't had a cha...Dec 11, 2022·4 min read·17