├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── photos │ └── note1.jpg └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Header.jsx ├── Note_App.jsx ├── To_do_list.jsx ├── index.css ├── index.js └── note_logo.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/photos/note1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/photos/note1.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/Header.jsx -------------------------------------------------------------------------------- /src/Note_App.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/To_do_list.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/To_do_list.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/note_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indra0421/simple_todo_app/HEAD/src/note_logo.jpg --------------------------------------------------------------------------------