42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
// All components mapping with path for internal routes
|
|
// import PaymentType from '@/Pages/list-admin/payment/PaymentType'
|
|
import { lazy } from 'react'
|
|
|
|
const Dashboard = lazy(() => import('@/Pages/protected/Dashboard'))
|
|
const IndexSantri = lazy(() => import('@/Pages/list-admin/santri/IndexSantri'))
|
|
const PaymentType = lazy(() => import('@/Pages/list-admin/payment/PaymentType'))
|
|
const ManualPayment = lazy(() => import('@/Pages/list-admin/payment/ManualPayment'))
|
|
const WalletUser = lazy(() => import('@pages/list-admin/wallet/WalletUser'))
|
|
const Transaction = lazy(() => import('@pages/list-admin/payment/Transaction'))
|
|
|
|
// console.log(route('dashboard'))
|
|
|
|
const routes = [
|
|
{
|
|
path: route('dashboard'),
|
|
component: Dashboard,
|
|
},
|
|
{
|
|
path: route('indexSantri'),
|
|
component: IndexSantri,
|
|
},
|
|
{
|
|
path: route('indexPaymentType'),
|
|
component: PaymentType
|
|
},
|
|
{
|
|
path: route('indexManualPayment'),
|
|
component: ManualPayment,
|
|
},
|
|
{
|
|
path: route('walletUser'),
|
|
componenet: WalletUser
|
|
},
|
|
{
|
|
path: route('transaction'),
|
|
component: Transaction
|
|
}
|
|
]
|
|
|
|
export default routes
|