fixed customer page table

This commit was merged in pull request #1.
This commit is contained in:
victorAnumudu
2025-08-22 17:42:37 +01:00
parent c68a5a2c99
commit 9a55f2a05f
12 changed files with 120 additions and 116 deletions
+8
View File
@@ -0,0 +1,8 @@
import React from 'react'
import BillingsCom from '../components/loan_charges/BillingsCom'
export default function BillingsPage() {
return (
<BillingsCom />
)
}
-8
View File
@@ -1,8 +0,0 @@
import React from 'react'
import LoanChargesCom from '../components/loan_charges/LoanChargesCom'
export default function LoanChargesPage() {
return (
<LoanChargesCom />
)
}
+8
View File
@@ -0,0 +1,8 @@
import React from 'react'
import SubscriptionsCom from '../components/transactions/SubscriptionsCom'
export default function SubscriptionsPage() {
return (
<SubscriptionsCom />
)
}
-8
View File
@@ -1,8 +0,0 @@
import React from 'react'
import TransactionsCom from '../components/transactions/TransactionsCom'
export default function TransactionsPage() {
return (
<TransactionsCom />
)
}