├── .env.example ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── babel.config.js ├── dist ├── 0.9c0f81488d5788f4d661.js ├── 0d0de35b6447df412926c60e216ccfa8.png ├── 1.9c0f81488d5788f4d661.js ├── 1.9c0f81488d5788f4d661.js.LICENSE.txt ├── 12.9c0f81488d5788f4d661.js ├── 13.9c0f81488d5788f4d661.js ├── 14.9c0f81488d5788f4d661.js ├── 15.9c0f81488d5788f4d661.js ├── 16.9c0f81488d5788f4d661.js ├── 17.9c0f81488d5788f4d661.js ├── 18.9c0f81488d5788f4d661.js ├── 19.9c0f81488d5788f4d661.js ├── 2.9c0f81488d5788f4d661.js ├── 20.9c0f81488d5788f4d661.js ├── 2b25ac03edabf67270554b3d790c43fe.woff ├── 884ea0c2506448bcda32c9dfe0d09e7a.png ├── de8075ae6f7bce20fcab444e8d1aa960.woff ├── favicon.png ├── index.html ├── main~1f20a385.9c0f81488d5788f4d661.js ├── main~21833f8f.9c0f81488d5788f4d661.js ├── main~253ae210.9c0f81488d5788f4d661.js ├── main~31ecd969.9c0f81488d5788f4d661.js ├── main~31ecd969.9c0f81488d5788f4d661.js.LICENSE.txt ├── main~7d359b94.9c0f81488d5788f4d661.js ├── main~7d359b94.9c0f81488d5788f4d661.js.LICENSE.txt ├── main~93acefaf.9c0f81488d5788f4d661.js ├── main~987e6011.9c0f81488d5788f4d661.js ├── main~d939e436.9c0f81488d5788f4d661.js ├── main~f9ca8911.9c0f81488d5788f4d661.js └── main~f9ca8911.9c0f81488d5788f4d661.js.LICENSE.txt ├── package.json ├── prettier.config.js ├── src ├── assets │ ├── fonts │ │ ├── Poppins │ │ │ └── Poppins-Regular.woff │ │ └── Roboto │ │ │ └── Roboto-Regular.woff │ └── images │ │ ├── favicon.png │ │ ├── github │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ │ ├── james.png │ │ ├── team1.png │ │ └── team2.png ├── components │ ├── Activity │ │ └── index.tsx │ ├── App.tsx │ ├── Common │ │ ├── Avatar │ │ │ └── index.tsx │ │ ├── Buttons │ │ │ └── Big │ │ │ │ └── index.tsx │ │ ├── Checkbox │ │ │ └── index.tsx │ │ ├── ErrorBoundary │ │ │ └── index.jsx │ │ ├── GlobalStyle │ │ │ └── index.jsx │ │ ├── Header │ │ │ ├── Actions │ │ │ │ ├── Button │ │ │ │ │ └── index.tsx │ │ │ │ ├── Search │ │ │ │ │ └── index.tsx │ │ │ │ ├── Shape │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Icons │ │ │ ├── Common │ │ │ │ ├── Attach.tsx │ │ │ │ ├── Close.tsx │ │ │ │ ├── Oval.tsx │ │ │ │ └── Shape.tsx │ │ │ ├── Menu │ │ │ │ ├── Activity.tsx │ │ │ │ ├── Dashboard.tsx │ │ │ │ ├── Messages.tsx │ │ │ │ ├── Schedule.tsx │ │ │ │ ├── Settings.tsx │ │ │ │ └── Tasks.tsx │ │ │ ├── SocialMedia │ │ │ │ ├── Facebook.tsx │ │ │ │ └── Google.tsx │ │ │ └── Switcher │ │ │ │ ├── Default.tsx │ │ │ │ ├── Gantt.tsx │ │ │ │ └── Kanban.tsx │ │ ├── Loader │ │ │ └── index.tsx │ │ ├── Logo │ │ │ ├── Image │ │ │ │ └── index.tsx │ │ │ ├── Title │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── PrivateRoute │ │ │ └── index.tsx │ │ ├── Sidebar │ │ │ ├── Header │ │ │ │ ├── Button │ │ │ │ │ └── index.tsx │ │ │ │ ├── Items │ │ │ │ │ └── index.tsx │ │ │ │ ├── Teams │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── Menu │ │ │ │ ├── Item │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Task │ │ │ ├── Info │ │ │ │ └── index.tsx │ │ │ ├── Score │ │ │ │ └── index.tsx │ │ │ ├── Titles │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── TaskModal │ │ │ ├── Description │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── TaskWrapper │ │ │ ├── Button │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── TeamCard │ │ │ └── index.tsx │ ├── Login │ │ ├── Form │ │ │ ├── Submit │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Menu │ │ │ └── index.tsx │ │ ├── Social │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Main │ │ ├── Content │ │ │ ├── Tasks │ │ │ │ └── index.tsx │ │ │ ├── Teams │ │ │ │ └── index.tsx │ │ │ ├── Title │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Messages │ │ └── index.tsx │ ├── Schedule │ │ └── index.tsx │ ├── Settings │ │ └── index.tsx │ └── Tasks │ │ ├── Content │ │ ├── Title │ │ │ ├── Selector │ │ │ │ └── index.tsx │ │ │ ├── Switcher │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ │ └── index.tsx ├── index.html ├── index.tsx ├── store │ ├── auth │ │ ├── actions.ts │ │ ├── reducers.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── index.ts │ ├── show │ │ ├── actions.ts │ │ ├── reducers.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── tasks │ │ ├── actions.ts │ │ ├── reducers.ts │ │ ├── selectors.ts │ │ └── types.ts │ └── teams │ │ ├── actions.ts │ │ ├── reducers.ts │ │ ├── selectors.ts │ │ └── types.ts └── utils │ ├── axios.ts │ └── idGenerator.ts ├── tsconfig.json └── webpack.config.js /.env.example: -------------------------------------------------------------------------------- 1 | API_URL="" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .env 4 | package-lock.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/0.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/0.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/0d0de35b6447df412926c60e216ccfa8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/0d0de35b6447df412926c60e216ccfa8.png -------------------------------------------------------------------------------- /dist/1.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/1.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/1.9c0f81488d5788f4d661.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/1.9c0f81488d5788f4d661.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/12.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/12.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/13.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/13.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/14.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/14.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/15.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/15.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/16.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/16.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/17.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/17.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/18.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/18.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/19.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/19.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/2.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/2.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/20.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/20.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/2b25ac03edabf67270554b3d790c43fe.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/2b25ac03edabf67270554b3d790c43fe.woff -------------------------------------------------------------------------------- /dist/884ea0c2506448bcda32c9dfe0d09e7a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/884ea0c2506448bcda32c9dfe0d09e7a.png -------------------------------------------------------------------------------- /dist/de8075ae6f7bce20fcab444e8d1aa960.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/de8075ae6f7bce20fcab444e8d1aa960.woff -------------------------------------------------------------------------------- /dist/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/favicon.png -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/main~1f20a385.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~1f20a385.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~21833f8f.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~21833f8f.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~253ae210.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~253ae210.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~31ecd969.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~31ecd969.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~31ecd969.9c0f81488d5788f4d661.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~31ecd969.9c0f81488d5788f4d661.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/main~7d359b94.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~7d359b94.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~7d359b94.9c0f81488d5788f4d661.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /* 2 | object-assign 3 | (c) Sindre Sorhus 4 | @license MIT 5 | */ 6 | -------------------------------------------------------------------------------- /dist/main~93acefaf.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~93acefaf.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~987e6011.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~987e6011.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~d939e436.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~d939e436.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~f9ca8911.9c0f81488d5788f4d661.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~f9ca8911.9c0f81488d5788f4d661.js -------------------------------------------------------------------------------- /dist/main~f9ca8911.9c0f81488d5788f4d661.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/dist/main~f9ca8911.9c0f81488d5788f4d661.js.LICENSE.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/assets/fonts/Poppins/Poppins-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/fonts/Poppins/Poppins-Regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/fonts/Roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/favicon.png -------------------------------------------------------------------------------- /src/assets/images/github/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/github/1.png -------------------------------------------------------------------------------- /src/assets/images/github/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/github/2.png -------------------------------------------------------------------------------- /src/assets/images/github/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/github/3.png -------------------------------------------------------------------------------- /src/assets/images/github/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/github/4.png -------------------------------------------------------------------------------- /src/assets/images/github/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/github/5.png -------------------------------------------------------------------------------- /src/assets/images/james.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/james.png -------------------------------------------------------------------------------- /src/assets/images/team1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/team1.png -------------------------------------------------------------------------------- /src/assets/images/team2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/assets/images/team2.png -------------------------------------------------------------------------------- /src/components/Activity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Activity/index.tsx -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/Common/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Avatar/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Buttons/Big/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Buttons/Big/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/components/Common/ErrorBoundary/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/ErrorBoundary/index.jsx -------------------------------------------------------------------------------- /src/components/Common/GlobalStyle/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/GlobalStyle/index.jsx -------------------------------------------------------------------------------- /src/components/Common/Header/Actions/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Header/Actions/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/Actions/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Header/Actions/Search/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/Actions/Shape/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Header/Actions/Shape/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/Actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Header/Actions/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Common/Attach.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Common/Attach.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Common/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Common/Close.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Common/Oval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Common/Oval.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Common/Shape.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Common/Shape.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Menu/Activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Menu/Activity.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Menu/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Menu/Dashboard.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Menu/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Menu/Messages.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Menu/Schedule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Menu/Schedule.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Menu/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Menu/Settings.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Menu/Tasks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Menu/Tasks.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/SocialMedia/Facebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/SocialMedia/Facebook.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/SocialMedia/Google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/SocialMedia/Google.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Switcher/Default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Switcher/Default.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Switcher/Gantt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Switcher/Gantt.tsx -------------------------------------------------------------------------------- /src/components/Common/Icons/Switcher/Kanban.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Icons/Switcher/Kanban.tsx -------------------------------------------------------------------------------- /src/components/Common/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Loader/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Logo/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Logo/Image/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Logo/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Logo/Title/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Logo/index.tsx -------------------------------------------------------------------------------- /src/components/Common/PrivateRoute/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/PrivateRoute/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/Header/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/Header/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/Header/Items/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/Header/Items/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/Header/Teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/Header/Teams/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/Header/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/Menu/Item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/Menu/Item/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/Menu/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Task/Info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Task/Info/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Task/Score/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Task/Score/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Task/Titles/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Task/Titles/index.tsx -------------------------------------------------------------------------------- /src/components/Common/Task/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/Task/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TaskModal/Description/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/TaskModal/Description/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TaskModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/TaskModal/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TaskWrapper/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/TaskWrapper/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TaskWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/TaskWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/Common/TeamCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Common/TeamCard/index.tsx -------------------------------------------------------------------------------- /src/components/Login/Form/Submit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Login/Form/Submit/index.tsx -------------------------------------------------------------------------------- /src/components/Login/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Login/Form/index.tsx -------------------------------------------------------------------------------- /src/components/Login/Menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Login/Menu/index.tsx -------------------------------------------------------------------------------- /src/components/Login/Social/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Login/Social/index.tsx -------------------------------------------------------------------------------- /src/components/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Login/index.tsx -------------------------------------------------------------------------------- /src/components/Main/Content/Tasks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Main/Content/Tasks/index.tsx -------------------------------------------------------------------------------- /src/components/Main/Content/Teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Main/Content/Teams/index.tsx -------------------------------------------------------------------------------- /src/components/Main/Content/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Main/Content/Title/index.tsx -------------------------------------------------------------------------------- /src/components/Main/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Main/Content/index.tsx -------------------------------------------------------------------------------- /src/components/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Main/index.tsx -------------------------------------------------------------------------------- /src/components/Messages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Messages/index.tsx -------------------------------------------------------------------------------- /src/components/Schedule/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Schedule/index.tsx -------------------------------------------------------------------------------- /src/components/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Settings/index.tsx -------------------------------------------------------------------------------- /src/components/Tasks/Content/Title/Selector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Tasks/Content/Title/Selector/index.tsx -------------------------------------------------------------------------------- /src/components/Tasks/Content/Title/Switcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Tasks/Content/Title/Switcher/index.tsx -------------------------------------------------------------------------------- /src/components/Tasks/Content/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Tasks/Content/Title/index.tsx -------------------------------------------------------------------------------- /src/components/Tasks/Content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Tasks/Content/index.tsx -------------------------------------------------------------------------------- /src/components/Tasks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/components/Tasks/index.tsx -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/store/auth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/auth/actions.ts -------------------------------------------------------------------------------- /src/store/auth/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/auth/reducers.ts -------------------------------------------------------------------------------- /src/store/auth/selectors.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/auth/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/auth/types.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/show/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/show/actions.ts -------------------------------------------------------------------------------- /src/store/show/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/show/reducers.ts -------------------------------------------------------------------------------- /src/store/show/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/show/selectors.ts -------------------------------------------------------------------------------- /src/store/show/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/show/types.ts -------------------------------------------------------------------------------- /src/store/tasks/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/tasks/actions.ts -------------------------------------------------------------------------------- /src/store/tasks/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/tasks/reducers.ts -------------------------------------------------------------------------------- /src/store/tasks/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/tasks/selectors.ts -------------------------------------------------------------------------------- /src/store/tasks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/tasks/types.ts -------------------------------------------------------------------------------- /src/store/teams/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/teams/actions.ts -------------------------------------------------------------------------------- /src/store/teams/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/teams/reducers.ts -------------------------------------------------------------------------------- /src/store/teams/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/teams/selectors.ts -------------------------------------------------------------------------------- /src/store/teams/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/store/teams/types.ts -------------------------------------------------------------------------------- /src/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/utils/axios.ts -------------------------------------------------------------------------------- /src/utils/idGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/src/utils/idGenerator.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwardcdev/square-mock/HEAD/webpack.config.js --------------------------------------------------------------------------------