scrimba
React Full Course
props in React
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

props in React
by
AboutCommentsNotes
props in React
by
Expand for more info
ContactCard.js
run
preview
console
import React from "react"

function ContactCard(props) {
return (
<div className= "contact-card">
<img src={props.imgUrl}/>
<h3>{props.name}</h3>
<p>Phone: {props.phone}</p>
<p>Email: {props.email}</p>
</div>
)
}

export default ContactCard
Console
/index.html
LIVE