Files
documenso/apps/web/pages/settings/index.tsx
Timur Ercan b12ea36237 settings nav
2023-01-04 15:04:28 +01:00

15 lines
409 B
TypeScript

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;