Create profile management page
This commit creates a profile management page within the settings section.
This commit is contained in:
@@ -8,6 +8,7 @@ import Index from "./pages/Index";
|
||||
import Transactions from "./pages/Transactions";
|
||||
import Analytics from "./pages/Analytics";
|
||||
import Settings from "./pages/Settings";
|
||||
import ProfileManagement from "./pages/ProfileManagement";
|
||||
import NotFound from "./pages/NotFound";
|
||||
import Login from "./pages/Login";
|
||||
import Register from "./pages/Register";
|
||||
@@ -26,6 +27,7 @@ const App = () => (
|
||||
<Route path="/transactions" element={<Transactions />} />
|
||||
<Route path="/analytics" element={<Analytics />} />
|
||||
<Route path="/settings" element={<Settings />} />
|
||||
<Route path="/profile-management" element={<ProfileManagement />} />
|
||||
<Route path="/login" element={<Login />} />
|
||||
<Route path="/register" element={<Register />} />
|
||||
<Route path="/forgot-password" element={<ForgotPassword />} />
|
||||
|
||||
Reference in New Issue
Block a user