settings mock

This commit is contained in:
Timur Ercan
2022-12-06 18:49:38 +01:00
parent 85eefbfc12
commit 97bae407f8
7 changed files with 540 additions and 116 deletions

View 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 SettingsPage: NextPageWithLayout = () => {
return <Settings></Settings>;
};
SettingsPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default SettingsPage;