props in react

PHOTO EMBED

Mon Jun 19 2023 11:43:32 GMT+0000 (Coordinated Universal Time)

Saved by @sarfraz_sheth #react.js

--------------- APP page ----------------
// custo tag by the programmer in React -- are not html tag
    <Note
    title = "The first note"
    detail = "note Detail"
     />
    <Note
    title = "The second note"
    detail = "note Detail"
     />

---------------- Note Page html page ------------


function Note(props){
    return (
    <div className="note">
        <h1>{props.title}</h1>
        <p>{props.detail}</p>
    </div>
    )
}

      
content_copyCOPY

the props are property predifend in the custom tag we create on app page for this component.