Topic: Jit-React
Lesson: Components
Completed page answer: this is a small real-page version of Components.
function StatusCard( props )
{
return <section className="card">
<h2>{props.title}</h2>
<p>{props.message}</p>
</section>;
}
// Safe change: Components practice