delete duplicates

This commit is contained in:
Timur Ercan
2023-01-19 14:39:29 +01:00
parent 3ec4844a80
commit fa6f513860
2 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
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;