Props - Specify html tags on component with props

0 votes
122 views
added Feb 10, 2022 in React by lcjr First Warrant Officer (11,850 points)
// ChildComponent
function NarrativeMainSectionBox(props) {
    return (
        <div className="section-card hover-box-parent">
          <div className="hover-box">
            <a 
              href="#"
              className="overlay"
            > 
            <img src={props.imgurl} />
          </div>
        </div>
    );
}
// ParentComponent
return (
    <div className="section-box"> 
      <ChildComponent imgurl="/images/1.png" />  
      <ChildComponent imgurl="/images/2.png" />
    </div>
);

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...