Segun Ajibolaajibolasegun.hashnode.dev·Dec 28, 2023Everything You Need to Know About Props in ReactProp is a very common term in React. It is one of the must-know concepts for React beginners as you will always use props in most of your React applications. In this article, you will learn the meaning of props in depth, how to use it, how to pass it...11 likes·165 readsprops
Gilbert Cheruiyotgilbertofke.hashnode.dev·Jul 6, 2023Mastering State Management in React: A Journey from Struggle to Success!Imagine this: I’m sitting in front of my computer screen, connected to a virtual Zoom classroom filled with enthusiastic students. Each of their faces is displayed on my monitor, their eyes focused attentively, eagerly waiting to uncover the mysterie...1 like·33 readsReact
Rashid Mahmoodcodewithrashid.hashnode.dev·Jun 9, 2023Day 3: Understanding State and Props in ReactWelcome to Day 3 of our React teaching series! In the previous two articles, we learned how to set up our development environment and get started with React components and JSX. Today, we will dive deeper into two essential concepts in React: state an...React
Asma Shaheenlearnings.hashnode.dev·May 27, 2023Props in ReactJSIntroduction: The concept of Props is used in React for allowing a parent component to communicate with its child component by passing the information through Props. These are needed to pass the values dynamically to a component. Props are similar to...70 readsReact
Raj Sarkarrajsarkar.hashnode.dev·Apr 15, 2023Understanding React PropsWhat are React Props? In React, props are a way to pass data from a parent component to a child component. The arguments we pass to functions are called "props" in React Components. It is an object which stores the value of attributes of a tag and gi...React Basics: A Beginner's GuideReact
Disha Jaindisha.hashnode.dev·Mar 28, 2023Props in Class-based-componentsIn React, props (short for "properties") are a mechanism for passing data from a parent component to a child component. When you define a class-based component in React, you can specify one or more props that the component should accept as input. Pro...34 readsprops
Falomo Sharonfalomosharon.hashnode.dev·Mar 3, 2023Beginners Guide to Understanding Props in ReactIntroduction Welcome to React universe, if you’re still new to this javascript library then you might have come across a term called “props”. Props is a way to pass data from one component to another. Understanding how to use props effectively is a c...20 likes·150 readsReact
Disha Jaindisha.hashnode.dev·Jan 20, 2023Props in ReactIn React, "props" (short for "properties") are a way for a parent component to pass data to a child component. For eg- //component file import React from 'react' import PropTypes from 'prop-types' // shorthand for the above line-impt function Greet...2 likes·191 readsReact
Sanathansanathan.hashnode.dev·Nov 3, 2022React props for beginnerWhat are props? ➜ The word “props” simply means “properties”, and it's works similar to HTML attributes. ➜ props are the read-only component. props can't be changed or edited, Once they are assigned value can't be changed. ➜ we use props to pass dat...41 readsreactprops
Roshan kcroshankc.info.np·Sep 9, 2022Different ways to passing props and mapping in Reactjs - Day 3Props are a great way on react to deal with data to make our component reusable. In our previous article, we have learned how to pass and receive props. Today we will learn how to map over data to make our component dynamic and our code more self-sus...1 like·2.3K readsTen-day ReactjsMapping