Files
digifi-www/src/pages/TermsAndConditionPage.tsx
T
2024-03-18 17:23:04 +01:00

14 lines
259 B
TypeScript

import React from "react";
import { HomeLayout } from "../layouts";
import { TsAndCs } from "../components";
const TermsAndConditionPage = () => {
return (
<HomeLayout>
<TsAndCs />
</HomeLayout>
);
};
export default TermsAndConditionPage;