15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
const RouteLinks = {
|
|
loginPage: '/auth/login',
|
|
homePage: '/',
|
|
customerPage: '/customer',
|
|
subscriptions: '/subscriptions',
|
|
billings: '/billings',
|
|
|
|
loansPage: '/loans',
|
|
transactionsPage: '/transactions',
|
|
offers: '/offers',
|
|
transaction_details_page: '/transaction/details',
|
|
errorPage: '*',
|
|
}
|
|
|
|
export default RouteLinks |