feat(wallets): implement wallet management features including create, update, delete, deposit, transfer, and list movements
- Added createWallet, updateWallet, deleteWallet, depositWallet, transferWallet, and listMovements handlers. - Created corresponding routes for wallet operations. - Developed frontend components for wallet management including dialogs for creating, editing, depositing, adjusting balance, transferring, and viewing movements. - Integrated wallet management into the authenticated routes.
This commit is contained in:
6
apps/frontend/src/routes/_authenticated/wallets.tsx
Normal file
6
apps/frontend/src/routes/_authenticated/wallets.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import { createFileRoute } from "@tanstack/react-router";
|
||||
import { WalletsPage } from "@/features/wallets/WalletsPage";
|
||||
|
||||
export const Route = createFileRoute("/_authenticated/wallets")({
|
||||
component: WalletsPage,
|
||||
});
|
||||
Reference in New Issue
Block a user