├── .gitignore ├── README.md ├── backend ├── .prettierrc ├── README.md ├── config │ └── db.js ├── jsconfig.json ├── middleware │ ├── auth.js │ └── checkObjectId.js ├── models │ ├── Customer.js │ ├── Equipment.js │ ├── MainComponent.js │ ├── MaintenanceePlanCheck.js │ ├── Oicl.js │ ├── Post.js │ ├── Profile.js │ ├── Secondary.js │ ├── Technicianlist.js │ └── User.js ├── package-lock.json ├── package.json ├── routes │ └── api │ │ ├── auth.js │ │ ├── customers.js │ │ ├── equipments.js │ │ ├── maincomponentlists.js │ │ ├── maintenanceplanchecklists.js │ │ ├── oicl.js │ │ ├── posts.js │ │ ├── profile.js │ │ ├── secondarylists.js │ │ ├── technicianlists.js │ │ └── users.js └── server.js └── frontend ├── .eslintrc.json ├── .husky └── pre-commit ├── .prettierrc ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── img │ ├── logo.png │ └── upload_nft.png ├── index.html ├── logo.png ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.js ├── App.scss ├── App.test.js ├── actions │ ├── alert.js │ ├── auth.js │ ├── customer.js │ ├── equipment.js │ ├── maincomponentlist.js │ ├── maintenanceplanchecklist.js │ ├── post.js │ ├── profile.js │ ├── secondarylist.js │ ├── technicianlist.js │ └── types.js ├── components │ ├── .DS_Store │ ├── Admin │ │ ├── CustomerProfile │ │ │ ├── Create.js │ │ │ └── List.js │ │ ├── Dashboard.js │ │ ├── EquipmentProfile │ │ │ ├── Create.js │ │ │ └── List.js │ │ ├── MainComponentList │ │ │ ├── Create.js │ │ │ └── List.js │ │ ├── MaintenancePlanCheckList │ │ │ ├── Create.js │ │ │ └── List.js │ │ ├── PastMaintenanceReport │ │ │ └── List.js │ │ ├── SecondaryList │ │ │ ├── Create.js │ │ │ └── List.js │ │ └── Technicianlist │ │ │ ├── Create.js │ │ │ └── List.js │ ├── Dashboard.js │ ├── Technician │ │ ├── Dashboard.js │ │ ├── Oicl.js │ │ ├── Pmp.js │ │ └── SetComponentModal.js │ ├── auth │ │ ├── Login.js │ │ └── Register.js │ ├── layout │ │ ├── Alert.js │ │ ├── Landing.js │ │ ├── Navbar.js │ │ ├── NotFound.js │ │ ├── Spinner.js │ │ └── spinner.gif │ └── routing │ │ └── PrivateRoute.js ├── index.css ├── index.js ├── logo.svg ├── reducers │ ├── alert.js │ ├── auth.js │ ├── index.js │ ├── post.js │ ├── profile.js │ └── technicianlist.js ├── reportWebVitals.js ├── setupProxy.js ├── setupTests.js ├── store.js └── utils │ ├── api.js │ ├── formatDate.js │ └── setAuthToken.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/README.md -------------------------------------------------------------------------------- /backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/.prettierrc -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/config/db.js -------------------------------------------------------------------------------- /backend/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/jsconfig.json -------------------------------------------------------------------------------- /backend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/middleware/auth.js -------------------------------------------------------------------------------- /backend/middleware/checkObjectId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/middleware/checkObjectId.js -------------------------------------------------------------------------------- /backend/models/Customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Customer.js -------------------------------------------------------------------------------- /backend/models/Equipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Equipment.js -------------------------------------------------------------------------------- /backend/models/MainComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/MainComponent.js -------------------------------------------------------------------------------- /backend/models/MaintenanceePlanCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/MaintenanceePlanCheck.js -------------------------------------------------------------------------------- /backend/models/Oicl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Oicl.js -------------------------------------------------------------------------------- /backend/models/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Post.js -------------------------------------------------------------------------------- /backend/models/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Profile.js -------------------------------------------------------------------------------- /backend/models/Secondary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Secondary.js -------------------------------------------------------------------------------- /backend/models/Technicianlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/Technicianlist.js -------------------------------------------------------------------------------- /backend/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/models/User.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/routes/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/auth.js -------------------------------------------------------------------------------- /backend/routes/api/customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/customers.js -------------------------------------------------------------------------------- /backend/routes/api/equipments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/equipments.js -------------------------------------------------------------------------------- /backend/routes/api/maincomponentlists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/maincomponentlists.js -------------------------------------------------------------------------------- /backend/routes/api/maintenanceplanchecklists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/maintenanceplanchecklists.js -------------------------------------------------------------------------------- /backend/routes/api/oicl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/oicl.js -------------------------------------------------------------------------------- /backend/routes/api/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/posts.js -------------------------------------------------------------------------------- /backend/routes/api/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/profile.js -------------------------------------------------------------------------------- /backend/routes/api/secondarylists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/secondarylists.js -------------------------------------------------------------------------------- /backend/routes/api/technicianlists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/technicianlists.js -------------------------------------------------------------------------------- /backend/routes/api/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/routes/api/users.js -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/backend/server.js -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm test 5 | -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/.prettierrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/img/logo.png -------------------------------------------------------------------------------- /frontend/public/img/upload_nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/img/upload_nft.png -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/logo.png -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/App.scss -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/actions/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/alert.js -------------------------------------------------------------------------------- /frontend/src/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/auth.js -------------------------------------------------------------------------------- /frontend/src/actions/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/customer.js -------------------------------------------------------------------------------- /frontend/src/actions/equipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/equipment.js -------------------------------------------------------------------------------- /frontend/src/actions/maincomponentlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/maincomponentlist.js -------------------------------------------------------------------------------- /frontend/src/actions/maintenanceplanchecklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/maintenanceplanchecklist.js -------------------------------------------------------------------------------- /frontend/src/actions/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/post.js -------------------------------------------------------------------------------- /frontend/src/actions/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/profile.js -------------------------------------------------------------------------------- /frontend/src/actions/secondarylist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/secondarylist.js -------------------------------------------------------------------------------- /frontend/src/actions/technicianlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/technicianlist.js -------------------------------------------------------------------------------- /frontend/src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/actions/types.js -------------------------------------------------------------------------------- /frontend/src/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/.DS_Store -------------------------------------------------------------------------------- /frontend/src/components/Admin/CustomerProfile/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/CustomerProfile/Create.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/CustomerProfile/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/CustomerProfile/List.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/Dashboard.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/EquipmentProfile/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/EquipmentProfile/Create.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/EquipmentProfile/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/EquipmentProfile/List.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/MainComponentList/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/MainComponentList/Create.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/MainComponentList/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/MainComponentList/List.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/MaintenancePlanCheckList/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/MaintenancePlanCheckList/Create.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/MaintenancePlanCheckList/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/MaintenancePlanCheckList/List.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/PastMaintenanceReport/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/PastMaintenanceReport/List.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/SecondaryList/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/SecondaryList/Create.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/SecondaryList/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/SecondaryList/List.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/Technicianlist/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/Technicianlist/Create.js -------------------------------------------------------------------------------- /frontend/src/components/Admin/Technicianlist/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Admin/Technicianlist/List.js -------------------------------------------------------------------------------- /frontend/src/components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Dashboard.js -------------------------------------------------------------------------------- /frontend/src/components/Technician/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Technician/Dashboard.js -------------------------------------------------------------------------------- /frontend/src/components/Technician/Oicl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Technician/Oicl.js -------------------------------------------------------------------------------- /frontend/src/components/Technician/Pmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Technician/Pmp.js -------------------------------------------------------------------------------- /frontend/src/components/Technician/SetComponentModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/Technician/SetComponentModal.js -------------------------------------------------------------------------------- /frontend/src/components/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/auth/Login.js -------------------------------------------------------------------------------- /frontend/src/components/auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/auth/Register.js -------------------------------------------------------------------------------- /frontend/src/components/layout/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/layout/Alert.js -------------------------------------------------------------------------------- /frontend/src/components/layout/Landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/layout/Landing.js -------------------------------------------------------------------------------- /frontend/src/components/layout/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/layout/Navbar.js -------------------------------------------------------------------------------- /frontend/src/components/layout/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/layout/NotFound.js -------------------------------------------------------------------------------- /frontend/src/components/layout/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/layout/Spinner.js -------------------------------------------------------------------------------- /frontend/src/components/layout/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/layout/spinner.gif -------------------------------------------------------------------------------- /frontend/src/components/routing/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/components/routing/PrivateRoute.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/reducers/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/reducers/alert.js -------------------------------------------------------------------------------- /frontend/src/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/reducers/auth.js -------------------------------------------------------------------------------- /frontend/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/reducers/index.js -------------------------------------------------------------------------------- /frontend/src/reducers/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/reducers/post.js -------------------------------------------------------------------------------- /frontend/src/reducers/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/reducers/profile.js -------------------------------------------------------------------------------- /frontend/src/reducers/technicianlist.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/setupProxy.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /frontend/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/store.js -------------------------------------------------------------------------------- /frontend/src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/utils/api.js -------------------------------------------------------------------------------- /frontend/src/utils/formatDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/utils/formatDate.js -------------------------------------------------------------------------------- /frontend/src/utils/setAuthToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/src/utils/setAuthToken.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HappyMicky0317/CRS/HEAD/frontend/tailwind.config.js --------------------------------------------------------------------------------