mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
15 lines
409 B
TypeScript
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;
|