17 lines
465 B
TypeScript
17 lines
465 B
TypeScript
import Main from "@/src/components/pages/admin/settings";
|
|
import defaultAdminProps from "@/src/functions/pages/admin/default-admin-props";
|
|
import Layout from "@/src/layouts/admin";
|
|
import { GetServerSideProps } from "next";
|
|
|
|
export default function AdminSettings() {
|
|
return (
|
|
<Layout>
|
|
<Main />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export const getServerSideProps: GetServerSideProps = async (ctx) => {
|
|
return await defaultAdminProps({ ctx });
|
|
};
|