12 lines
356 B
JavaScript
12 lines
356 B
JavaScript
// src/pages/LoanRepaymentPage.js
|
|
import LoanRepayment from '../components/LoanRepayment.js';
|
|
|
|
export default function LoanRepaymentPage() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 p-6">
|
|
{/* Pass data via props or context exactly as LoanRepayment expects */}
|
|
<LoanRepayment />
|
|
</div>
|
|
);
|
|
}
|