├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── Components ├── Styles.css └── Todo.jsx ├── Images └── todo.svg.svg ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React TODO ✍ 2 | A todo-listapp to take notes, add items, complete Tasks and keep an log of your daily activities with comprehencive delete list and editlist feature and an amazing UI. 3 | 4 |  5 | 6 | ## Key Features 7 | * Dynamic UI 8 | * LocalStorage of list Data 9 | * Edit option to make corrections to existing list 10 | 11 | 12 | 13 | ## Build With 14 | 15 |