Topic: Jit-React
Lesson: Components
Answer: make one small change only, then compare the result.
function StatusCard( props )
{
return <section className="card">
<h2>{props.title}</h2>
<p>{props.message}</p>
</section>;
}
function StatusCard( props )
{
return <section className="card">
<h2>{props.title}</h2>
<p>{props.message}</p>
</section>;
}
// Safe change: Components practice
Prediction: only the visible wording or named value should change. The structure should still work the same way.