nss-day-cohort-29 / reactive-nutshell-starrywick

reactive-nutshell-starrywick created by GitHub Classroom
0 stars 0 forks source link

for tasks: list, delete, and add are functioning without errors. #24

Closed zwcrawford closed 5 years ago

zwcrawford commented 5 years ago

Description: TaskList, delete and add are working

Type of change

[X ] New feature (non-breaking change which adds functionality)

Testing Instructions for Change Made:

git fetch --all git checkout branch add_delete_function run json server on port 5002 npm start in reactive-nutshell Add the data below to database json;

"tasks": [
    {
      "id": 1,
      "userId": 2,
      "task": "task",
      "dueDate": "2018-01-28",
      "complete": false
    },
    {
      "id": 2,
      "userId": 2,
      "task": "task2",
      "dueDate": "2019-01-28",
      "complete": true
    }
  ]

click on tasks in navbar verify TaskList is showing on DOM verify add is working on DOM verify delete is working on DOM verify no errors are present and your code is functioning as expected.

Checklist: [X ] My code follows the style guidelines of this project [X ] I have performed a self-review of my own code [X ] My changes generate no new warnings [X ] I have added test instructions that prove my fix is effective or that my feature works