- Live Site: Nelify Deployment
- Repository: GitHub Master
- API: Heroku API
- Auth API: Class API
- Resource: React Bootstrap
git clone https://github.com/josh-williams-401-advanced-javascript/todo
cd todo
npm i
touch .env
REACT_APP_API="https://api-js401.herokuapp.com"
REACT_APP_SECRET=supersecret
npm start
Try signing in with different roles to see how the app functions differently.
username | password |
---|---|
user | USER |
editor | EDITOR |
admin | ADMIN |
Add new items to the to-do list to see them pop up on the right. Click on the pill on the top left of each card to watch the count go up and down and to see the style of the list items change. Delete an item by clicking the 'x' on the top right of each item.
To mess around with the app, change the initial useState()
values of the files in the context folder, to see a different number of items per screen, whether the app shows completed items or not, and what the list items are sorted by.
N/A