feat: admin staff management

This commit is contained in:
2025-05-21 16:02:43 +05:30
parent 60d187b300
commit 3061b88343
12 changed files with 1647 additions and 339 deletions
+10 -1
View File
@@ -10,10 +10,11 @@ import MockPayment from "../views/MockPayment";
import Users from "../views/User";
import ClinicSetup from "../views/ClinicSetup";
import ClinicTranscripts from "../views/ClinicTranscripts";
import ContractManagement from "../views/ContractManagement";
import MasterDataManagement from "../views/MasterData";
import PaymentManagement from "../views/PaymentManagement";
import ClinicDocUpdater from "../views/ClinicDocUpdate";
import ForgotPassword from "../views/ForgotPassword";
import ResetPassword from "../views/ResetPassword";
export const routesData = [
{
@@ -43,6 +44,14 @@ export const routesData = [
path: "signup/your-details",
component: YourDetailsForm,
},
{
path: "forgotpassword",
component: ForgotPassword,
},
{
path: 'reset-password',
component: ResetPassword,
},
],
},
];