If you don't already have the app running, start it by running npm start
from the root of the frontend-bootcamp
folder. Click the "exercise" link under day 1 step 6 to see results.
- Use the provided
itemCount
value to display the current number of items left. - Use a ternary operator to print "item" vs "items" based on whether
itemCount === 1
.
- Pull in
label
andstatus
from props using destructuring - Set the
input
text tolabel
and thechecked
prop totrue
ifstatus === 'completed
Note that this is only half the work we need to do to make these controlled inputs work. What is the other half?