Files
documenso/apps/web/pages/documents/[id].tsx
Timur Ercan e9979a2c64 login draft
2022-12-06 19:16:34 +01:00

15 lines
439 B
TypeScript

import type { ReactElement } from "react";
import Layout from "../../components/layout";
import Settings from "../../components/settings";
import type { NextPageWithLayout } from "../_app";
const DocumentDetailPage: NextPageWithLayout = () => {
return <p>this is the document page.</p>;
};
DocumentDetailPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default DocumentDetailPage;