mirror of
https://github.com/documenso/documenso.git
synced 2025-11-23 05:01:54 +10:00
login draft
This commit is contained in:
14
apps/web/pages/documents/[id].tsx
Normal file
14
apps/web/pages/documents/[id].tsx
Normal file
@ -0,0 +1,14 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user