├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ ├── ColumnLayout.tsx │ └── columns │ │ ├── Done.tsx │ │ ├── InProgress.tsx │ │ └── ToDo.tsx ├── index.tsx ├── react-app-env.d.ts ├── redux │ ├── slice │ │ ├── customSlice.ts │ │ ├── done.ts │ │ ├── inProgress.ts │ │ └── todo.ts │ └── store │ │ └── index.ts └── types │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/ColumnLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/components/ColumnLayout.tsx -------------------------------------------------------------------------------- /src/components/columns/Done.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/components/columns/Done.tsx -------------------------------------------------------------------------------- /src/components/columns/InProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/components/columns/InProgress.tsx -------------------------------------------------------------------------------- /src/components/columns/ToDo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/components/columns/ToDo.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/redux/slice/customSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/redux/slice/customSlice.ts -------------------------------------------------------------------------------- /src/redux/slice/done.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/redux/slice/done.ts -------------------------------------------------------------------------------- /src/redux/slice/inProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/redux/slice/inProgress.ts -------------------------------------------------------------------------------- /src/redux/slice/todo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/redux/slice/todo.ts -------------------------------------------------------------------------------- /src/redux/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/redux/store/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enespolat25/react-todo-list-redux/HEAD/tsconfig.json --------------------------------------------------------------------------------