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

19 lines
555 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";
const DocumentsPage: NextPageWithLayout = () => {
const { data: session } = useSession();
2022-12-08 16:04:22 +01:00
return <>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;