├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.css ├── App.js ├── Config └── Config.js ├── components ├── Header │ └── Header.jsx ├── Note │ └── Note.jsx └── NoteForm │ └── NodeForm.jsx ├── index.css ├── index.js └── registerServiceWorker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | wrapper{ 2 | float: left; 3 | } -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/Config/Config.js -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Note/Note.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/components/Note/Note.jsx -------------------------------------------------------------------------------- /src/components/NoteForm/NodeForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/components/NoteForm/NodeForm.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmeturganci/todo-react-fire/HEAD/src/registerServiceWorker.js --------------------------------------------------------------------------------