├── .babelrc ├── .eslintrc.json ├── .github └── workflows │ └── linters.yml ├── .gitignore ├── .stylelintrc.json ├── LICENSE ├── README.md ├── package.json ├── public ├── index.html ├── manifest.json └── robots.txt └── src ├── components ├── Header.jsx ├── InputTaskManager.jsx ├── TaskManagerApp.jsx ├── TaskManagerItem.jsx ├── TaskManagerList.jsx └── TaskManagerLogic.jsx ├── index.js ├── reportWebVitals.js ├── styles ├── base │ └── normalize.css └── index.scss └── tests └── setupTests.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/InputTaskManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/components/InputTaskManager.jsx -------------------------------------------------------------------------------- /src/components/TaskManagerApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/components/TaskManagerApp.jsx -------------------------------------------------------------------------------- /src/components/TaskManagerItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/components/TaskManagerItem.jsx -------------------------------------------------------------------------------- /src/components/TaskManagerList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/components/TaskManagerList.jsx -------------------------------------------------------------------------------- /src/components/TaskManagerLogic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/components/TaskManagerLogic.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/styles/base/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/styles/base/normalize.css -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/tests/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITurres/react-task-manager/HEAD/src/tests/setupTests.js --------------------------------------------------------------------------------