claimpdf page setup

This commit is contained in:
2025-06-19 23:11:39 +05:30
parent 213b522bd5
commit 4e61e08638
2 changed files with 330 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ 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 ClaimsPdfPage = lazy(() => import("./pages/claims-pdf-page"));
const NotFound = lazy(() => import("./pages/not-found"));
function Router() {
@@ -28,6 +29,7 @@ function Router() {
<ProtectedRoute path="/claims" component={() => <ClaimsPage />} />
<ProtectedRoute path="/preauthorizations" component={() => <PreAuthorizationsPage />} />
<ProtectedRoute path="/payments" component={() => <PaymentsPage />} />
<ProtectedRoute path="/claimspdf" component={() => <ClaimsPdfPage/>}/>
<Route path="/auth" component={() => <AuthPage />} />
<Route component={() => <NotFound />} />
</Switch>