feat(cloud-page) - setup1

This commit is contained in:
2025-09-25 03:26:23 +05:30
parent e86aefd62f
commit ac6d906e03
12 changed files with 979 additions and 206 deletions

View File

@@ -25,6 +25,7 @@ const DatabaseManagementPage = lazy(
() => import("./pages/database-management-page")
);
const ReportsPage = lazy(() => import("./pages/reports-page"));
const CloudStoragePage = lazy(() => import("./pages/cloud-storage-page"));
const NotFound = lazy(() => import("./pages/not-found"));
function Router() {
@@ -50,7 +51,8 @@ function Router() {
path="/database-management"
component={() => <DatabaseManagementPage />}
/>
<ProtectedRoute path="/reports/" component={() => <ReportsPage />} />
<ProtectedRoute path="/reports" component={() => <ReportsPage />} />
<ProtectedRoute path="/cloud-storage" component={() => <CloudStoragePage />} />
<Route path="/auth" component={() => <AuthPage />} />
<Route component={() => <NotFound />} />
</Switch>