scrimba
Frontend Career Path
React basics
Meme generator
Boxes update: a11y fixes
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

AboutCommentsNotes
Boxes update: a11y fixes
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"
onClick={props.toggle}
>
</div>
)
}
Console
/index.html
"> "> "> "> ">
-1:09