Topic: Jit-React
Lesson: Components
Add one extra small item using the same pattern.
Example completed result:
function StatusCard( props )
{
return <section className="card">
<h2>{props.title}</h2>
<p>{props.message}</p>
</section>;
}
// Safe change: Components practice
Done when: the learner can show this answer, point to the changed line or item, and explain it in plain English.