Topic: Jit-React
Lesson: Components
The answer is the completed example below. Nothing should be changed yet.
function StatusCard( props )
{
return <section className="card">
<h2>{props.title}</h2>
<p>{props.message}</p>
</section>;
}
Done when: the learner can show this answer, point to the changed line or item, and explain it in plain English.