adding new module named "Cards"

This commit is contained in:
bagusajisaputroo
2025-06-10 15:02:17 +07:00
parent 4a56209c58
commit e57c6af2ff
9 changed files with 940 additions and 1 deletions

View File

@ -51,6 +51,8 @@ import AgentBalance from '@/pages/members/agent-balance/AgentBalance';
import HistoryTransactionDisbursement from '@/pages/disbursement/history-transaction/HistoryTransaction';
import SearchMember from '@/pages/members/search-member/SearchMember';
import WithdrawalEmoney from '@/pages/transaction/withdrawl-emoney/WithdrawalEmoney';
import ManageCards from '@/pages/cards/manage-card/ManageCard';
import HistoryCard from '@/pages/cards/history-card/HistoryCard';
// DISBURSEMENT
@ -98,6 +100,11 @@ const AppRoutingSetup = (): ReactElement => {
<Route path="/members/search-member" element={<SearchMember />} />
<Route path="/members/search-member" element={<SearchMember />} />
{/* cards */}
<Route path="/cards/manage-card" element={<ManageCards />} />
<Route path="/cards/card-history" element={<HistoryCard />} />
<Route path="/access/access-type-management" element={<AccessType />} />
<Route path="/accounts/account-management" element={<ManageAccount />} />