Worksheet 01 Answer

Topic: Jit-React

Lesson: Components

Copy the example exactly

Completed answer for worksheet 1:
The answer is the completed example below. Nothing should be changed yet.

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

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