scrimba
Frontend Career Path
React basics
Meme generator
Boxes challenge part 3.2 - unified state
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

Boxes challenge part 3.2 - unified state
AboutCommentsNotes
Boxes challenge part 3.2 - unified state
Expand for more info
Box.js
run
preview
console
import React from "react"

export default function Box(props) {

const styles = {
backgroundColor: props.on ? "#222222" : "transparent"
}

return (
<div
style={styles}
className="box"
>
</div>
)
}
Console
/index.html
-7:45