9 lines
154 B
React
9 lines
154 B
React
import React from 'react'
|
|
import LoansCom from '../components/loanscom/LoansCom'
|
|
|
|
export default function LoansPage() {
|
|
return (
|
|
<LoansCom />
|
|
)
|
|
}
|