Tasks:
- Create todo app : • User can create, edit, delete, and toggle todo. • Use antd lib.
- Use eslint.
- Create simple express server with mongoDb Add route todo and methods: GET: return todos from db POST: create a new todo and save db PUT: change completed status and update at db DELETE: remove a todo from db
- Connect ui and server
- Create expo todo app and connect with server
27.07.24
- Create app and implemented eslint
- Add Ant-Design in npm dependences
- Created the application structure (add all basic components and basic styles)
28.07.24
- Add new functional:
- create function;
- edit function;
- delete function;
- togle function.
- Add comments and render number of tasks and completed tasks
- Create Nodejs server
- Connected the server to the db(mongoDb)
- Add method:
- get;
- post;
- delete;
29.07.24
- Add method:
- put;
- Create mobile app:
- add all methodes;
- add simple styles;
- Code refactoring