mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 16:51:38 +10:00
15 lines
402 B
TypeScript
15 lines
402 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;
|