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

15 lines
400 B
TypeScript
Raw Normal View History

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";
const TeamPage: NextPageWithLayout = () => {
2022-12-08 16:04:22 +01:00
return <>This is the documents page</>;
2022-12-06 20:44:21 +01:00
};
TeamPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default TeamPage;