13 lines
224 B
TypeScript
13 lines
224 B
TypeScript
import React from 'react'
|
|
import { HomeLayout } from '../layouts'
|
|
|
|
const PersonalBankingPage: React.FC = () => {
|
|
return (
|
|
<HomeLayout>
|
|
Personal Banking
|
|
</HomeLayout>
|
|
)
|
|
}
|
|
|
|
export default PersonalBankingPage
|