Files
frontend-bootcamp/step1-05/exercise/README.md
2019-02-24 19:22:41 -08:00

618 B

Exercise

TodoFooter

  1. Update the TodoFooter component, copying over the <footer> tag and all of its children
  2. Remove any onclick properties, and change class to className

TodoList

  1. Update the TodoList component like you did with the footer.
  2. Import TodoListItem and add 4 of them inside of the <ul>
  3. Bonus points for using a for loop or using map to create 4 list items based on the array [1,2,3,4]