This is a to-do list app built with React for the purpose of learning to use the Context hook for state management.
CRUD functionality for tasks.
- Add tasks
- Delete tasks
- Update tasks
- Mark tasks as completed
src ├─ App.jsx ├─ Components │ ├─ Footer │ │ └─ index.jsx │ ├─ Header │ │ └─ index.jsx │ ├─ List │ │ └─ index.jsx │ ├─ SettingsForm │ │ └─ index.js │ └─ Todo │ ├─ Todo.test.jsx │ └─ index.jsx ├─ Context │ └─ Settings │ └─ index.jsx ├─ hooks │ └─ form.js └─ index.js