scrimba
Frontend Career Path
React basics
Meme generator
Update: addressing a11y issues
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

Update: addressing a11y issues
AboutCommentsNotes
Update: addressing a11y issues
Expand for more info
Star.js
run
preview
console
import React from "react"

export default function Star(props) {
const starIcon = props.isFilled ? "star-filled.png" : "star-empty.png"
return (
<img
src={`../images/${starIcon}`}
className="card--favorite"
onClick={props.handleClick}
/>
)
}
Console
/index.html
-5:11