NA +91-8727899942 thecoderjob@gmail.com

CHAPTER - 12

What is props

  • It’s helpful for send data from one component to another.

In Parent.js

function Parent() {

  return (

    <>

     <Child name={‘This is my name’}/>

    </>

  );

}

================================================================

In Child.js

function Child(props) {

  return (

    <>

     <h1>props.name</h1>

    </>

  );

}

Chapter 11

What is State

Previous chapter

Chapter 13

Input box experiment

Next chapter

Get In Touch

NA

thecoderjob@gmail.com

+91-8727899942

Popular Links

© www.thecoderjob.com. All Rights Reserved.               Designed by HTML Codex