Jan 25 · 3 min read · Heyyy Everyone! This is Day 4 of learning React from Hitesh Sir(Chai Aur Code). Today i learned about props and some basic Tailwind. This is my first time with Tailwind, i only know css, i have never tried tailwind, but hitesh sir introduced to day m...
Join discussionSep 18, 2025 · 5 min read · Introduction In modern times, React is the most popular trending JavaScript library for building a single-page application. All the applications in React are built using components. Using the props, you can send the data from one component to another...
Join discussion
Nov 28, 2024 · 3 min read · React is a well-known JavaScript library for making user interfaces. ⚛️ To build reusable and dynamic UI, React uses Components and Props. 🧩 Let's explain them in simple terms. 📚 What Are Components? 🧱 Think of components as building blocks of a ...
Join discussion
Oct 8, 2024 · 6 min read · IntegratingTailwind and React props As I continue my React journey, I've been excited to explore how to integrate Tailwind CSS into my projects. Today, I experimented with a card component from the Tailwind CSS documentation. This hands-on experience...
Join discussion
Oct 6, 2024 · 2 min read · What is Object Destructuring? Object destructuring is a simple way to extract values from objects and assign them to variables. It helps you access properties of an object without having to repeat the object name multiple times. Simple Example of Obj...
Join discussionOct 5, 2024 · 3 min read · Here are some simple, real-world examples of components using props in React: 1. Greeting Component Example (Passing a User’s Name as a Prop) This example demonstrates how you can pass a user’s name from a parent component to a child component to cre...
Join discussionOct 5, 2024 · 1 min read · React.FC stands for "Function Component" in React and allows you to specify the props that a function component will accept. It can be helpful in many ways Makes it easier to see the expected shape of a component's props just by looking at its type ...
Join discussion
Oct 5, 2024 · 2 min read · In React, props (short for "properties") are used to pass data from one component to another, usually from a parent component to a child component. Simple Explanation: Props are like the arguments you pass to a function. They allow a parent compone...
Join discussionSep 3, 2024 · 2 min read · React is a popular JavaScript library. You can build user interfaces, especially single-page applications with it. One of the key features that make React powerful and flexible is props. In this blog, we'll explore what React props are, why we use th...
Join discussion