plane/web/pages/index.tsx
2023-10-10 12:31:40 +05:30

14 lines
283 B
TypeScript

import type { NextPage } from "next";
// layouts
import DefaultLayout from "layouts/default-layout";
// components
import { SignInView } from "components/views";
const HomePage: NextPage = () => (
<DefaultLayout>
<SignInView />
</DefaultLayout>
);
export default HomePage;