mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
16 lines
380 B
TypeScript
16 lines
380 B
TypeScript
import { ReactNode } from "react";
|
|
import { Metadata } from "next";
|
|
import { AdminLayout } from "@/layouts/admin-layout";
|
|
|
|
interface EmailLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Email Settings - God Mode",
|
|
};
|
|
|
|
const EmailLayout = ({ children }: EmailLayoutProps) => <AdminLayout>{children}</AdminLayout>;
|
|
|
|
export default EmailLayout;
|