Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 317 Bytes

thinking.md

File metadata and controls

15 lines (15 loc) · 317 Bytes
  • Thinking about the UI (wire-framing)
  • Functionality
    • Add TODO_ITEM
    • Delete TODO_ITEM
    • Check task
    • Total tasks
  • Data
    • tasks - Array
    • task - An object { done: true/false, text: 'Go to gym', id }
  • Functions (in code)
    • addTodo
    • deleteTodo
    • checkTodo
    • renderList