14 lines
281 B
TypeScript
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;
|