forked from github/plane
14 lines
283 B
TypeScript
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;
|