forked from github/plane
17 lines
445 B
TypeScript
17 lines
445 B
TypeScript
"use client"
|
|
import { ReactElement } from "react";
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
// components
|
|
import { SignInView } from "components/page-views";
|
|
// type
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const HomePage: NextPageWithLayout = () => <SignInView />;
|
|
|
|
// HomePage.getLayout = function getLayout(page: ReactElement) {
|
|
// return <DefaultLayout>{page}</DefaultLayout>;
|
|
// };
|
|
|
|
export default HomePage;
|