9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import React from "react";
|
|
import { HomeLayout } from "../layouts";
|
|
|
|
const BusinessBankingPage: React.FC = () => {
|
|
return <HomeLayout>Business Banking</HomeLayout>;
|
|
};
|
|
|
|
export default BusinessBankingPage;
|