Topic: Jit-React
Lesson: Components
Try This example answer: this is one acceptable completed solution, not the only possible solution.
function StatusCard( props )
{
return <section className="card">
<h2>{props.title}</h2>
<p>{props.message}</p>
</section>;
}
// Safe change: Components practice
Explanation: it uses the lesson pattern, changes one clear value, and keeps the result simple enough to test.