scrimba
React Bootcamp Course
Default Props
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

Default Props
AboutCommentsNotes
Default Props
Expand for more info
Card.js
run
preview
console
import React from "react"

function Card(props) {
const styles = {
backgroundColor: props.cardColor,
height: 100,
width: 100
}

return (
<div style={styles}></div>
)
}

export default Card
Console
/index.html
-5:30