Files
digifi-www/src/pages/GetStartedPage.tsx
T
2024-03-21 11:29:38 +01:00

14 lines
281 B
TypeScript

import React from "react";
import { GetStarted as Main } from "../components";
import { GetStartedLayout } from "../layouts";
const GetStartedPage: React.FC = () => {
return (
<GetStartedLayout>
<Main />
</GetStartedLayout>
);
};
export default GetStartedPage;