Files
sign/apps/web/pages/settings/index.tsx

15 lines
409 B
TypeScript
Raw Normal View History

2022-12-06 18:49:38 +01:00
import type { ReactElement } from "react";
2023-01-04 15:04:28 +01:00
import Layout from "../../components/layout";
import Settings from "../../components/settings";
import type { NextPageWithLayout } from "../_app";
2022-12-06 18:49:38 +01:00
const SettingsPage: NextPageWithLayout = () => {
return <Settings></Settings>;
};
SettingsPage.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
export default SettingsPage;