mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
577 B
577 B
Exercise
TodoFooter
- Use the provided
itemCountvalue drive the number of items left. - Use a ternary operator to print
itemvsitemsbased on ifitemCount === 1
TodoListItem
- Pull in
labelandcompletedfrom props using destructuring - Set the todo's text to
labeland thecheckedprop tocompletedNote that this is only half the work we need to do to make these controlled inputs. What is the other half?