Worksheet 06 Answer

Topic: Jit-React

Lesson: Components

Add one extra item

Completed answer for worksheet 6:
Add one extra small item using the same pattern.

Example completed result:
function StatusCard( props )
{
    return <section className="card">
        <h2>{props.title}</h2>
        <p>{props.message}</p>
    </section>;
}

// Safe change: Components practice

Done when: the learner can show this answer, point to the changed line or item, and explain it in plain English.