├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── public └── index.js ├── src ├── components │ ├── app.js │ ├── create-todo.js │ ├── style.css │ ├── todos-list-header.js │ ├── todos-list-item.js │ └── todos-list.js └── index.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- 1 | ## Documentation 2 | 3 | You can see below the API reference of this module. 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/package.json -------------------------------------------------------------------------------- /public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/public/index.js -------------------------------------------------------------------------------- /src/components/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/components/app.js -------------------------------------------------------------------------------- /src/components/create-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/components/create-todo.js -------------------------------------------------------------------------------- /src/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/components/style.css -------------------------------------------------------------------------------- /src/components/todos-list-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/components/todos-list-header.js -------------------------------------------------------------------------------- /src/components/todos-list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/components/todos-list-item.js -------------------------------------------------------------------------------- /src/components/todos-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/components/todos-list.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IonicaBizau/react-todo-app/HEAD/webpack.config.js --------------------------------------------------------------------------------