page added

This commit is contained in:
2025-07-04 23:41:03 +05:30
parent a8b89a28e3
commit 6bca2c0d72
4 changed files with 744 additions and 13 deletions

View File

@@ -16,10 +16,8 @@ const AppointmentsPage = lazy(() => import("./pages/appointments-page"));
const PatientsPage = lazy(() => import("./pages/patients-page"));
const SettingsPage = lazy(() => import("./pages/settings-page"));
const ClaimsPage = lazy(() => import("./pages/claims-page"));
const PreAuthorizationsPage = lazy(
() => import("./pages/preauthorizations-page")
);
const PaymentsPage = lazy(() => import("./pages/payments-page"));
const InsuranceEligibilityPage = lazy(()=> import("./pages/insurance-eligibility-page"))
const DocumentPage = lazy(() => import("./pages/documents-page"));
const NotFound = lazy(() => import("./pages/not-found"));
@@ -34,10 +32,7 @@ function Router() {
<ProtectedRoute path="/patients" component={() => <PatientsPage />} />
<ProtectedRoute path="/settings" component={() => <SettingsPage />} />
<ProtectedRoute path="/claims" component={() => <ClaimsPage />} />
<ProtectedRoute
path="/preauthorizations"
component={() => <PreAuthorizationsPage />}
/>
<ProtectedRoute path="/insurance-eligibility" component={()=><InsuranceEligibilityPage/>}/>
<ProtectedRoute path="/payments" component={() => <PaymentsPage />} />
<ProtectedRoute path="/documents" component={() => <DocumentPage />} />
<Route path="/auth" component={() => <AuthPage />} />