Files
sign/apps/web/pages/documents.tsx

27 lines
679 B
TypeScript
Raw Normal View History

import { useSession } from "next-auth/react";
2022-12-06 20:44:21 +01:00
import type { ReactElement } from "react";
import Layout from "../components/layout";
import Settings from "../components/settings";
import type { NextPageWithLayout } from "./_app";
import { SessionProvider } from "next-auth/react";
2023-01-04 16:28:32 +01:00
import Head from "next/head";
const DocumentsPage: NextPageWithLayout = () => {
const { data: session } = useSession();
2023-01-04 16:28:32 +01:00
return (
<>
<Head>
<title>Documents | Documenso</title>
</Head>
This is the documents page
</>
);
2022-12-06 20:44:21 +01:00
};
DocumentsPage.getLayout = function getLayout(page: ReactElement) {
2022-12-06 20:44:21 +01:00
return <Layout>{page}</Layout>;
};
export default DocumentsPage;