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 discussionFeb 23 · 9 min read · The 2am Call That Started Everything It was 2am on a Thursday. Our checkout page was crashing in production. I opened Sentry. It showed me this: TypeError: Cannot read properties of undefined (reading
Join discussion
Feb 10 · 2 min read · 1. The One Rule You Can’t Escape JavaScript cannot run by itself. It always needs HTML. Even React. Even big frameworks. At the end of the day, it’s always: <script></script> JS ko chalne ke liye HTML ka gate chahiye. 2. How JavaScript Ente...
Join discussion
Feb 10 · 4 min read · In React, change is not accidental. It is declared, tracked, and respected. That is the role useState plays, and it is far more important than most beginners initially realize. Many developers first encounter useState while building simple counters o...
Join discussion
Feb 10 · 3 min read · When building modern web applications, security is not a feature — it is a requirement. One of the most fundamental security decisions a developer makes is choosing HTTPS over HTTP. This article explains the technical differences between HTTP and HTT...
Join discussion
Feb 7 · 3 min read · Form validation used to be my least favorite part of frontend development. Between managing state with useState, handling errors, and ensuring type safety, it felt like I was writing more boilerplate than actual logic. Then I discovered React Hook Fo...
Join discussion
Feb 7 · 3 min read · Building data tables in React is one of those tasks that seems simple until you actually try to do it right. I've built tables from scratch multiple times, and each time I'd implement sorting, then filtering, then pagination, then realize I need row ...
Join discussion