forked from github/plane
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
16 lines
423 B
TypeScript
16 lines
423 B
TypeScript
import { ReactElement } from "react";
|
|
// layouts
|
|
import { SignInView } from "components/page-views";
|
|
import DefaultLayout from "layouts/default-layout";
|
|
// components
|
|
// type
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const HomePage: NextPageWithLayout = () => <SignInView />;
|
|
|
|
HomePage.getLayout = function getLayout(page: ReactElement) {
|
|
return <DefaultLayout>{page}</DefaultLayout>;
|
|
};
|
|
|
|
export default HomePage;
|