Real Challenge Answer

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
Done when: another beginner can open it, see the result, make one edit, and change it back in under five minutes.