Question 1 / 1
A developer writes the following JSX and Babel reports a syntax error:
const ColorCard = ({ title, color, rating }) => (
<div class="color-card">
<h2>{title}</h2>
<div style={backgroundColor: color} />
<p>Rating: {rating}/5</p>
</div>
)
Which line causes the Babel syntax error, and why?