mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 08:42:12 +10:00
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
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;
|