setting-page - staffmembers done- no form-ui , no users setting

This commit is contained in:
2025-05-15 13:11:05 +05:30
parent b03b7efcb4
commit 3799568b2d
5 changed files with 536 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ import AppointmentsPage from "./pages/appointments-page";
import PatientsPage from "./pages/patients-page";
import { ProtectedRoute } from "./lib/protected-route";
import { AuthProvider } from "./hooks/use-auth";
import SettingsPage from "./pages/settings-page";
function Router() {
return (
@@ -17,6 +18,7 @@ function Router() {
<ProtectedRoute path="/" component={Dashboard} />
<ProtectedRoute path="/appointments" component={AppointmentsPage} />
<ProtectedRoute path="/patients" component={PatientsPage} />
<ProtectedRoute path="/settings" component={SettingsPage}/>
<Route path="/auth" component={AuthPage} />
<Route component={NotFound} />
</Switch>