mirror of
https://github.com/documenso/documenso.git
synced 2025-11-19 19:21:39 +10:00
qoc, todo, document detail page
This commit is contained in:
13
apps/web/pages/documents/[id].tsx
Normal file
13
apps/web/pages/documents/[id].tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import { ReactElement } from "react";
|
||||
import Layout from "../../components/layout";
|
||||
import { NextPageWithLayout } from "../_app";
|
||||
|
||||
const DocumentsDetailPage: NextPageWithLayout = () => {
|
||||
return <>docs</>;
|
||||
};
|
||||
|
||||
DocumentsDetailPage.getLayout = function getLayout(page: ReactElement) {
|
||||
return <Layout>{page}</Layout>;
|
||||
};
|
||||
|
||||
export default DocumentsDetailPage;
|
||||
Reference in New Issue
Block a user